2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 03:30:54 +00:00

Added bootstrap table 'filter-control' extension to use in parametric tables

This commit is contained in:
eeintech
2020-10-01 12:10:35 -05:00
parent 15e1c05791
commit 9d3d9a190b
5 changed files with 5401 additions and 0 deletions

View File

@ -210,6 +210,8 @@ function loadParametricPartTable(table, options={}) {
field: header,
title: header,
sortable: true,
filterControl: 'input',
clear: 'fa-times icon-red',
});
}
}
@ -226,6 +228,7 @@ function loadParametricPartTable(table, options={}) {
columns: columns,
showColumns: true,
data: table_data,
filterControl: true,
});
}