Search
11405 results 3251-3260
Forum
- 29th Apr 2020implementing air-table style filtering?it isn't an AirTables filter clone - we've got our
- 23rd Apr 2020Select allI'm afraid I don't actually understand what you are looking for here. Are you trying to perform a filter on the page, or something else? Could you link to a page showing the issue please? Allan
- 23rd Apr 2020custom button for excel exportYeah, the message went into the spam filter - I just released this one. Has this been resolved in your other thread? Colin
- 21st Apr 2020How to implement individual column search?not work. The column filter string is correct but
- 21st Apr 2020Is Search intended to work on input fields?Yep, you need to create a custom filter like this example here. I did think there was an example for this, but I couldn't find it. Colin
- 19th Apr 2020condition on selectionsites" options instance but filter this dynamically with Javascript.
- 18th Apr 2020Get checkbox statusas a function to filter rows that have the
- 16th Apr 2020How exclude hidden element from searchfunction(data, type) { return type === 'filter'? data.split('<')[0] : data; }} ] } );
- 12th Apr 2020Share JSON response among several tablesof the dataSrc to filter the JSON. Final question
- 12th Apr 2020Sorting positive and negative numbers with server side renderingMy Code is; columns:[ .... { "searchable": true, data:'change', "render":function(data,type,row){ if(type ==="display" || type === "filter"){ if(parseFloat(row.change) === 0 ){ return '<span class="" style="color:#fff">0</span>'; }else if(row.change===null) { return '<span class="no-score" style="color:#fff">-</span>'; }else{ return row.score_color=='positive'?'<span style="color:#329476">'+row.change+'</span>': '<span style="color: #ff4d4d">'+row.change+'%'+'</span>'; } }else{ return parseFloat(row.change); //For sorting } } } ....... ]