Search
19099 results 1851-1860
Forum
- 13th Feb 2023editor request paramter?Editor::inst($db, 'myTable'); if ($_POST['action'] === 'create') { ... } else if ($_POST['action'] === 'edit')
- 12th Feb 2023tagify in data table editordoes, then you can create a field type plug-in
- 11th Feb 2023Jquery DataTable after adding scrolling function, Column footer does not align with its data columnInformation on how to create a test case (if
- 11th Feb 2023Populate table according to drop down list - Datatablecreate different table structure and
- 11th Feb 2023how can control fields options?editor .on('open', function (e, mode, action) { if ( action === 'create' ) { this.enable(['yourField1, yourField2']); //or this.show(['yourField1, yourField2']); } else { this.disable(['yourField1, yourField2']); //or this.hide(['yourField1, yourField2']); } });
- 11th Feb 2023Export JSON to VariableAdditional question 2: is there a way to create a URL with Column-Name (Header) = Cell-Value https://www.myserver.com/api.php?hostname=hercules&domain=ramseier.com&ip_address=10.0.0.55 etc ? for each row of a DataTable ? Best regards, David
- 10th Feb 2023Sort by placeholder if no value setthere is no value? /* Create an array with the
- 9th Feb 2023Styling cell when its column is used in sortingThanks Allan. It is a corporate app, no outside access. I will try to create a sample page to show the issue.
- 9th Feb 2023How can I sort dates in this format?Use columns.render to create orthogonal data for the sort operation. Parse the data and only return the first date. Kevin
- 9th Feb 2023Pattern matching in filters?You'd need to create a search plug-in that did the substitutions you need. Allan