Search
11379 results 3771-3780
Forum
- 1st Oct 2017preXhr doesnt take all the params before it firesif (oTable.fnSettings().oFeatures.bServerSide == true) { console.log('filterdata', filterData); var settings = oTable.fnSettings(); $(oTable[0]).on('preXhr.dt', function ( e, settings, data ) { var filter = []; Object.keys(filterData).forEach(function(key,index) { filter.push({name: key, value: filterData[key]}) }); $.extend(data, { filter: filter }); console.log('testdraw', settings.iDraw); });
- 29th Sep 2017Editor - Allow certain special character like '&' when using the xss validatorI think you would need to replace the default XSS filter with something like HTMLPurifier. Allan
- 28th Sep 2017Paginate records in server side procesinghI, i fix it changing this line return Json(new { /*draw = draw, recordsFiltered = totalRecords,*/ recordsTotal = totalRecords, data = data }, JsonRequestBehavior.AllowGet); but now the records filter dont work show me "Showing 0 to 0 of 0 entries" always
- 28th Sep 2017DataTables Buttons not showing in Semantic UI using Node (npm)processing: true, responsive: true, filter: false, serverSide: true, autoWidth:
- 22nd Sep 2017Any way to get the *next* ajax parameters?will include any custom filtering information (since its basically
- 20th Sep 2017Error : Object doesn't support property or method 'dataTable'aButtons": [{"sExtends": "xls", "oSelectorOpts": { "filter": "applied" }},{"sExtends": "pdf", "oSelectorOpts":
- 19th Sep 2017Datatable colVis display wrong selection value when using yadcfis because the select filter is placed in the
- 15th Sep 2017Render function executes 4 (or more) times more than available records.it for display, sort, filter, etc, so yes, it
- 13th Sep 2017Searching option: Not matchingSounds like you might need to use columns.render to pull the text out for the filter data type. Some examples can be seen here: https://datatables.net/manual/data/renderers#Functions Kevin
- 5th Sep 2017how to extract data from this arrayUltimately, I wanted to display: (conquest_data -> zone_data -> “name” + “my_guild_points”) into a table that I could filter and sort as required… it’s a shame it doesn’t seem possible with data tables as they would have been perfect