Search
43901 results 1871-1880
Forum
- 25th Aug 2016Display "edit" modal by clicking on table row.You would have a click event handler on the rows in the table that would call the edit() method. Allan
- 24th Aug 2016Searching a table from another siteHere is a SO thread on how to get a parameter from a query string in Javascript. You would then use that value as the search value to perform an initial search on the table. Allan
- 23rd Aug 2016Unable to fetch data from JOIN TableEditor instance for that table correctly. Now edit to
- 17th Aug 2016Add a variable to table name in editor?suggest you keep the table information at the server-side
- 17th Aug 2016The table id is lost when I user the 'scrollX' optionIt doesn't remove the table id - the original table
- 12th Aug 2016stateSave'd table shows empty if last page saved no longer existsNevermind, the above examples are still bad because if the table actually has no rows it will keep refreshing the page in an endless loop.
- 10th Aug 2016Sort Table By Column Removing Styling?What code are you using to sort the table? Simply adding order: [[ 9, 'asc' ]] to your initialisation should work. Allan
- 10th Aug 2016Editor does not update primary table when using LeftJoin()different models and a "table" identifier as a second
- 9th Aug 2016Paging does not take me to the top of the tablethanks @allan. for anyone who is interested, following is the snippet which will help you get to top of the table during pagination (hope it helps): var table = $('#example').DataTable(); $('#example').on( 'page.dt', function () { $("html, body").animate({ scrollTop: 0 }, "fast"); $("th:first-child").focus(); } );
- 9th Aug 2016Getting popup edit window on close to refresh table.it will refresh the table (i.e. on open)!? Do