Values columnfilter create select use Ajax
Values columnfilter create select use Ajax
Hello, I'm wanting to do something like this example: http://www.datatables.net/examples/api/multi_filter_select.html, but I want to load only a few columns via Ajax and others with fixed data. How Do I?
Can I still use the code:
.columnFilter({
aoColumns:
[
{ type: "select", values: [ 'Gecko', 'Trident', 'KHTML', 'Misc', 'Presto', 'Webkit', 'Tasman'] },
{ type: "text" },
null,
{ type: "number" },
{ type: "select" }
]
});
This discussion has been closed.