Search
12897 results 141-150
General
- Editor 1.7.4 release notes › Release notes › Fixesusing Options with an order statement where a field
- Editor 1.6.0 release notes › Release notes › Newlist of parameters, the order for which is not
- Editor 1.5.6 release notes › Release notes › Fixesdefined in a specific order when using the link()
- Editor 1.5.4 release notes › Release notes › Fixesdepending on the field order if used in a
- Editor 1.5.0 release notes › Release notes › JavascriptEditor itself. This load order independence is important for
- Editor 1.2.4 release notes › Release notes › Fixesdate field. Fix: JS - order() when called, when the
- Editor 1.2.2 release notes › Release notes › Updatesinserted on display, in order. This allows ordering to occur, and also
- Editor 1.2.1 release notes › Release notes › FixesFix - PHP: ORDERY BY (order method) had a couple
- Editor 1.1.0 release notes › Release notes › NewNew: REST example - in order to keep the example
Forum
- 26th Jul 2018Sort table using certain orderSounds like you want to order by number first then the letters. I would first try swapping the order within the sort type, something like this: 18AH, 17AH, 16AH, 15AH, 18PE, 17PE... Kevin
- 13th Jul 2018Sorting date column not sorting in correct ordertable = $('#WellTestTable').DataTable({ "scrollX": true, "order": [[2, 'desc']] }); }); and I
- 11th May 2018How to loop over rows/columns in display order?@colin ok - found an old answer Allan gave that helped internalRowNumber = table.rows( { order: 'applied' } )[0][displayedRowNumber] there's probably an api/easier way to do it - I just inspected the rows object to see where the values were
- 9th May 2018order data but disable sortingorderable: false then the orderable: false does not work and I can continue to order the data by all
- 9th May 2018Issues with Editor Options Instance and order byselect firstname from user order by lastname This doesn't
- 7th May 2018Correct syntax and placemente of ->order( ) clause in dependent() scriptHi Giuseppe, The $db->select() method returns a Result object so there is no order() method available on it. Instead, what you need to do is use the optional fourth parameter which lets you pass in the ordering information. Regards, Allan
- 9th Mar 2018Next button does not show sorted orderWithout seeing the code, are you doing a draw() after the order change, with 'false' as the parameter?
- 29th Jan 2018Data table changes my data orderUse the order option Kevin mentioned and set it to be an empty array. That will cause the initial display to be in whatever order the server returned it in. Allan
- 29th Jan 2018How to order by column with setInterval using Jquery?Yes, I already did that but my function have a setInterval that display value for the and the order() does not work properly for the value that displaying by setInterval. Thank you for you respond!
- 24th Jan 2018Set ORDER BY on server sidesequence of the alphabetically ordered columns. In SQL it would refer to ORDER BY column1, column2, column3