carbon-componentscarbon-components-reactHi,
I found those pages about Carbon HTML components but seems no-js related, however, I did some experiments on the browser console:
const bxDataTable = CarbonComponents.DataTableV2;
const bxOverflowMenu = CarbonComponents.OverflowMenu;
const bxModal = CarbonComponents.Modal;
var element = document.getElementById('my-table');
var table = bxDataTable.create(elment, {}); // need to investigate source files to know about the options
// for example for data table overflow menu to work you should also
// initialize the OverflowMenu components
bxDataTable.init();
bxOverflowMenu.init();
var modal_element = document.getElementById("my-modal");
var modal = bxModal.create(modal_element, {});
bxModal.init();
modal.show({});
I didn't pay attention to this section Get started Vanila
a demo of the data table!
https://nlayersapp-demo.azurewebsites.net/manage/users
and here is a page for the DataTableV2 components in blazor:
NLayersApp.SampleProject.Shared.components.BxDataTableV2
thanks!
Seems like you've got it working ๐
Going to close this but feel free to leave a comment if you need us to do anything else ๐
awesome framework ๐ฅ
Most helpful comment
Seems like you've got it working ๐
Going to close this but feel free to leave a comment if you need us to do anything else ๐