Search
23545 results 22741-22750
Forum
- 6th Nov 2018Column color when reload ajaxwhat's happening. However using columns.render is not intended for
- 5th Nov 2018How would you put a tooltip on mutiple buttons within a cellYou can either use columns.defaultContent or columns.render to build you buttons. You can add a title to the button. defaultContent: '<button title="my tooltip">My Button</button>' Kevin
- 31st Oct 2018Add Dollar $ SymbolI assume you mean add a dollar symbol for display purposes, in which case use columns.render.
- 31st Oct 2018Select2 column width too smallHi @DDGLOBAL , As Select2 is an external library, DataTables doesn't know about the size of the dropdown. You could try fixing it with columns.width, or see if columns.adjust() fixes it. Cheers, Colin
- 25th Oct 2018Add column data as linkHi @saif780 , columns.render is the way to go, the fourth example will do that for you, Cheers, Colin
- 24th Oct 2018Make all data in a column to a hyperlink ()Hi @runner , Take a look at the fourth example on columns.render, that's doing exactly what you're after, Cheers, Colin
- 23rd Oct 2018How to hide the master table when row click and show only the child tablein tables easily with columns.render, see the fourth example
- 23rd Oct 2018Change width of collumns?Hi @Mert1296 , Yep, columns.width is the way to
- 22nd Oct 2018Is there a way in Data Tables to create views via the clicking of a button?API with something like column().search() in your example above.
- 21st Oct 2018Setting a column type and using createdCell doesn't let column sortI suspect you will want to use columns.render instead when trying to set the data of the column. Kevin