Search
23598 results 23051-23060
Forum
- 13th Mar 2015HTML table as data source and "data": null columnto show icons, then columns.render probably is the best
- 3rd Mar 2015Format German numbers in inline editingto the browser. The columns.render function will manipulate that
- 25th Feb 2015Dynamically adding data-search attributes during initialization to enable filtering or global searchI had the same issue and could eventually work it out, using the columns.render property. See https://datatables.net/reference/option/columns.render and especially the 2nd example there.
- 12th Feb 2015Datatable loops over data three timesThank you for the explanation Allan, now I understand why it loops three times when using columns.render. I will ask for a new stored procedure to the DBA to avoid using render.
- 10th Feb 2015[RESOLVED] Datatables server-side problem to pagination (number of page not correct)RESOLVED. The "recordsFiltered" has a value different of "recordsTotal". The "recordsFiltred" is the number of items after globalSearch or columnSearch. If there is no search (globalSearch or columnSearch) , then the value "recordsFiltered" is equal to "recordsTotal". :)
- 2nd Feb 20151.10.4 Columns.data Bugyou should use the columns.render option as it is
- 30th Jan 2015Add linksYou can also use columns.render if you don't want to embed it into the JSON. There is an example on that page. Allan
- 30th Jan 2015render called twiceYes, the columns.render method is called every time DataTables requests data from the data source - this is intentional and desirable. Allan
- 22nd Jan 2015Composing data from AJAX sourceSure - use columns.render. A number of my Editor examples use exactly that (example). Allan
- 13th Jan 2015Datatables and render functionYou make an Ajax call inside the columns.render function? It isn't designed to be suitable for async processing as that will be a serious performance issue. Do you really need Ajax to just build a link? Allan