Search
10784 results 3741-3750
Forum
- 29th Jun 2021Add Class/ID to Lightbox EditorYep, that's the way to go, as there isn't a method to add classes to the form during the initialisation. You could do something like this, which is adding a class in that event: editor.on('open', function() { $('div.DTE_Body').addClass('twoColumns') }) Colin
- 28th Jun 2021Page Len Selector Control - Stylinga sanity check: does initializing an event listener like
- 28th Jun 2021Problem with Link "send mail" in Google Apps Script - not working well in websiteerror: Unsafe attempt to initiate navigation for frame with
- 27th Jun 2021Individual column searching isn't compatible with Ajax data sourceYes, @tangerine, it was my mistake. Initially I tried to have individual column searching with text inputs only. There was no crucial info about Ajax in the comments section. That's why the page should be updated with such info.
- 25th Jun 2021Combining fixed header, export buttons, and double column filtering issueorderCellsTop: true, fixedHeader: true, initComplete: function () { let c = 0;
- 22nd Jun 2021split the comma separated values of a column (1) Tags and make a dropdown filter with single valueusing this for filter initComplete: function () { this.api().columns([2,3,4,5,6,7,8]).every( function () { var
- 22nd Jun 2021Add Info To Editor On OpenI'm going to put an ajax call into the initEdit. Thank you very much!
- 18th Jun 2021Customized filtervalue: [''] }, ], logic: '' } }, "info": true, initComplete: function () { // Apply the search
- 17th Jun 2021Data Table Print Buttonline, and how you're initialising the table - I imagine
- 17th Jun 2021Column render current page onlyI'm not too clear on the question, but initComplete is called when the initialisation is complete and the table is ready to be used. The options Kevin suggested, are also initialisation options. Colin