Search
19119 results 15891-15900
Forum
- 15th Dec 2014aoColumns & columnDefsadd attributes to the created header cells. Allan
- 14th Dec 2014dynamic column value calculationokay this is how you resolve the problem I had... createdRow: function (row, data) { $('td:eq(2)', row).html( data['Distance']/data['Time'] ); }
- 10th Dec 2014IE11 & FixedColumn : unwanted horizontal scrollingI created a jsfiddle : http://jsfiddle.net/8xwuxo0t/1/ I
- 4th Dec 2014conditions in mRenderthe select, then this creates a link to the
- 4th Dec 2014Dynamically change bSearchable. v.1.10.2Ok, answer for this question I'd found :) http://datatables.net/forums/discussion/258/search-filter-text-applied-on-a-single-column Remove the event DataTables binds to the textbox it creates and then add your own event handler.
- 4th Dec 2014Destroy method throwing an error every other timeCan you link to a test page showing the issue, as required in the forum rules, so it can be debugged please? This example shows a table with FixedColumns being created and destroyed several times without issue. Allan
- 28th Nov 2014Responsive plugin not calling fnCreatedCellbutton? In the row created event, I suppose I
- 14th Nov 2014How to refresh a table with open child rows without AJAXupdate it. I have created some custom code to
- 11th Nov 2014DataTables Produces Empty RecordsAllan, Thank you for your quick response! You were correct on the JSON results. I created a few views in sql server and queried those into the datatable. It worked like a charm.
- 11th Nov 2014Datatables Filter - Exact search and smart searchThis is how i solved my problem. Below is the helper function i created: def filter_helper(data) return "#{data[:name]} = :search", search: "#{params[data[:dt_name]].gsub!(/^\"|\"?$/, '') }" if "#{params[data[:dt_name]]}".chars.first == "\"" return "#{data[:name]} like :search", search: "%#{params[data[:dt_name]]}%" if "#{params[data[:dt_name]]}".chars.first != "\"" end