Search
23545 results 22971-22980
Forum
- 25th Aug 2015can we added hyperlink of address to the google mapsYou would use "columns.render" to add a hyperlink to a cell. https://datatables.net/reference/option/columns.render
- 24th Aug 2015Break a continuous text in columnoption is to use columns.render to modify the string
- 21st Aug 2015Sorting with column.renderdate? Either way, the columns.render option will have no
- 20th Aug 2015How to get the currency symbol € at the end of the numberYou need to use the columns.render() option for that column. This should do it { data: "salary", render: $.fn.dataTable.render.number( ',', '.', 0, '', '€' ) } See this post and the link in it. http://datatables.net/forums/discussion/23496/add-dollar-sign-and-two-decimal-places-to-an-entire-column
- 7th Aug 2015How can I define a model property as a DateTime and have it work properly?You could use columns.render to modify the data
- 28th Jul 2015How to Make particular column clickable but the table headerThere is an example of how to create a hyperlink in the columns.render documentation. https://datatables.net/reference/option/columns.render
- 21st Jul 2015Display string 'NO' as the string rather than boolean false.Use columns.render to transform the data from one form into another. Allan
- 20th Jul 2015How do I hide a row whenever it has a specific constant in the data of the first column?be the easiest way - column().search(). If you don't want
- 10th Jul 2015What is the best practice if you need to apply multiple renders to a single column?Yes I am using columns.render in my example above.
- 3rd Jul 2015How to add a "Report Broken Link" Button?Two options: Modify the JSON that is created by whatever you are using on the server to create it to add the link. Use columns.data set to null and columns.render to produce the link that you want to display. Allan