Search
43615 results 6541-6550
Forum
- 23rd Sep 2020Apply Datatable to a Dynamically created TableNevermind, I just had to change it to $(el).DataTable();
- 18th Sep 2020I know its a common problem but Data Table is not responsive at all, have tried all soln. |pls helpWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 16th Sep 2020Data table render ifThe second parameter to columns.render is type, not full. We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 4th Sep 2020Initialized Bootstrap 4 Causing Table to not workWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 3rd Sep 2020How to fix the pagination when the table is empty?We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 2nd Sep 2020Remove the local stored data form a tableWent with a more direct function for the clear as the other was not clearing all the time: { extend: "create", editor: p200editor, text: 'Purge', action: function () { window.localStorage.clear(); window.location.reload(); } }
- 28th Aug 2020Check whether table row is selected?Yep, that's a good way to go. Colin
- 27th Aug 2020how to export if table cell contains multiple tables in one excel sheetWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 20th Aug 2020Datatable contains empty space at the end of the tableSorry Colin, I cant able to reproduce the issue in test case. Since we build the datatable dynamically, we used overflow:auto property to some other div. I cant able to reproduce the exact issue in test case.
- 19th Aug 2020How can I add row numbers on a table with ajax data sourceHi there @kthorngren , Thanks for the quick answer. I've tried the first option, but the the returned data structure is dynamic. For example I have something like this: { "ChartData":{ "MyChartType": [ [{"data","data"}], [{"data","data"}], ] } } And this "MyChartType" is not always the same. If I do this: ajax :{ url: this.appConfigService.analyseConfig.chartsApiUrl + "/api/Charts/GetChartDetails?type=" + this.chartType, dataSrc: function (json){ //here I'll need the this.chartType variable in order to extract the data // but the context of the function is not binded to the // Angular component class and I do not have access to this variable return json; } }, The problem is written as a comment in the code above. In other words I'll be able to alter the received json if I have access to the Angular class variable. The second option I think expects predefined empty 1st column in order to write there the row index, but I do not have access to the data, because it is from the API call. So I'm left with the first option, but I do not know is there a way to access that Angular class variable, if yes - then my problem is solved? Thanks in advance, Julian