Search
9216 results 4221-4230
Forum
- 7th Oct 2016SELECT DISTINCT for EditorLooks good - thanks for posting your changes! I'm curious what the use case is. Editor doesn't provide SQL aggregation options, so why would distinct rows be useful? Thanks, Allan
- 6th Oct 2016Search filter issue with Turkish characters "ı" , "İ" , "Ş" , "ş" , "Ğ" , "ğ"set date columns' searchable options to false, ajax error
- 5th Oct 2016Automatic select of the first row on reloadTwo options: ajax.reload() accepts a callback function as the first argument, so you can do basically the same as your initComplete function there. Listen for draw using one() to execute a function when the table next redraws. Allan
- 4th Oct 2016Search result highlighting in child rowsfeedback. I have 2 options for now to deal
- 4th Oct 2016date formatYou have two options - use a renderer to convert from the .NET date string to something readable, or modifier your server-side code to output the date in a readable format. Allan
- 4th Oct 2016change textarea heightUsing CSS is the correct way to do this. Editor's built in CSS uses: div.DTE_Field_Type_textarea textarea { padding: 3px; width: 100%; height: 80px; } Which will override any setting you make in the attr options. Allan
- 3rd Oct 2016Datatable Export to Excel button opening file dialog instead of direct saving on IE11Flash and HTML button options.: $('#myTable').DataTable( { buttons: [ 'excel' ] } ); I
- 30th Sep 20161.10.12 Scroller prefetches only 9 rowsyour array of DataTable options. Moderator: please prefix "[Solved]
- 30th Sep 2016Editor: type select displays it's value after changeyes I used columns.render option, I was querying if there was any builtin, because we are adding option as options: [{ label: 'To do', value: 1 }, { label: 'Done',value: 2 }]
- 29th Sep 2016very simple q: how to store database id in rows/records?is apparently I had turned on stateSave: true, and that was somehow preventing the ID column from being hidden. If the columns were previously visible, then yes, that visibility would take priority over the inititlisaiton options. Allan