mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-14 02:29:27 +00:00
Fixed Filter Widget to Work without Checkbox Columns
This commit is contained in:
@@ -744,7 +744,7 @@ var FHC_FilterWidget = {
|
||||
*/
|
||||
_renderTableDataset: function(data) {
|
||||
|
||||
if (data.hasOwnProperty("checkboxes") && data.checkboxes.trim() != "")
|
||||
if (data.hasOwnProperty("checkboxes") && data.checkboxes!=null && data.checkboxes.trim() != "")
|
||||
{
|
||||
$("#filterTableDataset > thead > tr").append("<th data-filter='false' title='Select'>Select</th>");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user