Search
23598 results 22831-22840
Forum
- 15th Aug 2018How to open Codeigniter view from Editor?you can do using columns.render. Allan
- 12th Aug 2018Update a column rendering function on the flyHi @dasul , This here may be what you're looking for. The columns.render function is conditionally checking the radio box and then displays the final column (a copy of the previous) depending upon the setting. Cheers, Colin
- 10th Aug 2018Changing td data on a searchable columnI can't use the columns.render, because I only know
- 8th Aug 2018Force rows to not resize and some important questions!!to a cell? Use columns.render for this. There are
- 4th Aug 2018How to correctly configure nested data?or you can use columns.render in the third column
- 1st Aug 2018Including and excluding expression at onceTwo options: Use a regex with the column().search() method, or Use a custom search plug-in. Allan
- 27th Jul 2018DefaultContent with an Imagecolumns.defaultContent is for dynamic content only. Use columns.render if it needs to be dynamic (i.e. checking if there is a value from an Editor API method). Allan
- 25th Jul 2018Render Human Readable numbersHi Franck, You would insert the numeral conversion (something like numeral(pageTotal).format('0.0a');) into the columns.render function, Cheers, Colin
- 24th Jul 2018How to render array as comma-space separatedHi @mwhouser , Yep, columns.render is the best place to do it. Another option would be xhr, where you can modify the data in the Ajax response before it gets loaded. Cheers, Colin
- 20th Jul 2018dropdown columnHi @dewiazlika , You can use columns.render to create the dropdown in the cell - then it's standard JS on what you put into it. Cheers, Colin