Search
23545 results 22861-22870
Forum
- 26th Jul 2017How to make selected input drop down boxes width stay fixed?You can experiment with columns.width to set the initial
- 21st Jul 2017how to add dropdownlist in column of every row?You could use columns.render to create a select element with the options you want to display. Allan
- 21st Jul 2017Download for the Customized ColumnHave a look at this example. Since you are using columns.render as a function, you'll need to modify what is being returned when the export is performed. Allan
- 19th Jul 2017put data money + quantity together2, '$' ).display; then use columns.render as a function: render:
- 11th Jul 2017Add hyperlinks to column specific to valueyou can use columns.render. The doc page has some exmples shwoing you to create links. Kevin
- 11th Jul 2017index column prints [object Object ]useful when combined with columns.render. Instead, in this case
- 9th Jul 2017How to order with rendering ?the columns.render function gives you the type. So you can do: if(type == 'display') return ' <span class="input-group-btn"><button type="button" class="btn btn-green btn-xs">Save</button></span> <input type="text" value="' + data + '" class="form-control" placeholder="Search for..."> </div>'; else return data;
- 9th Jul 2017add static columncolumns.render is the way to create a hyperlink in a td cell.
- 28th Jun 2017Use href to open a php page from selected rowin your code. The columns.render option is how you
- 28th Jun 2017How to make a multiselect for a dropdown list?The column().search() method could be used for this. Set it to match with regex and then use term1|term2|term3 etc to build up the regular expression based on the values selected in your list of options. Allan