Search
10784 results 5771-5780
Forum
- 2nd Feb 2016Google Material Design theme for Datatables?For anyone following this discussion, I've just committed an initial integration for DataTables to operate with MDL. Allan
- 29th Jan 2016Create button with extra functionused. The initCreate and initEdit events are there for
- 27th Jan 2016Datatables editor. copy de value from one variable to anotherI would suggest using initEdit rather than a data function (which can get very complicates since you need to handle setters as well as getters). How about something like: editor.on( 'initEdit', function () { editor.field( 'name1' ).set( editor.field( 'name2' ).get() ); } ); Allan
- 26th Jan 2016Different field availability between 'create' and 'edit' eventswith the initCreate and initEdit events and you can
- 25th Jan 2016Is there a way to create n columns?to a DataTable after initialisation, but you can certainly
- 23rd Jan 2016How to place show and search boxes at corners of tables.the in the table initialisation script: "dom": '<"top"<"pull-left"f> <"pull-right"ipl>>t'
- 22nd Jan 2016print extension has a XSS vulnerability.Thanks for your response, I'm using a templating engine to render the html initially, so the values are properly escape. My problem only occurs when I hit the "print" button
- 22nd Jan 2016Compare int values and color if higher or loweradd that call into initComplete. Allan
- 20th Jan 2016Fixed Columns problem with added header rowsadded the headers before initializing the table. Below is
- 19th Jan 2016ID for moved search boxThank you Allan! initComplete : function() { $("#example_filter input").prop( 'id', 'search_box' ); $("#example_filter").detach().appendTo('#new-search-area'); }, assigns id="search_box" and then moves it to the new div.