Home
last modified time | relevance | path

Searched refs:rowsVisible (Results 1 – 6 of 6) sorted by relevance

/plugin/tablelayout/script/
H A Dlayoutform.js21 var rowsVisible = parseInt($layoutcontainer.find('input[name="rowsVisible"]').val());
29 if (!(rowsVisible && rowsVisible > 0)) {
30 delete layout.rowsVisible;
32 layout.rowsVisible = rowsVisible;
66 if (layout.rowsHeaderSource && layout.rowsVisible) {
67 $layoutcontainer.find('input[name="rowsVisible"]').val(layout.rowsVisible);
H A Dtablelayout_functions.js37 if (layoutdata.rowsHeader > 0 && layoutdata.rowsVisible > 0) {
38 exports.freezeTableRows($table, layoutdata.rowsHeader, layoutdata.rowsVisible);
75 exports.freezeTableRows = function ($table, rowsToFreeze, rowsVisible) { argument
77 rowsVisible = parseInt(rowsVisible);
78 if ($table.find('tr').length <= rowsToFreeze + rowsVisible) {
109 for (i = rowsToFreeze; i < rowsToFreeze + rowsVisible; i += 1) {
H A Dedittable_plugin.js27 if (layout.rowsHeader && layout.rowsVisible) {
H A Dscript.js187 if (layoutdata.colwidth || layoutdata.rowsVisible) {
/plugin/tablelayout/
H A Dhelper.php26 if (!empty($layout->rowsVisible)) {
27 $syntax[] = 'rowsVisible=' . $layout->rowsVisible;
/plugin/tablelayout/_jstest/
H A DfreezeRows.tests.js35 var rowsVisible = 2;
36 tablelayout.freezeTableRows($table, rowsFrozen, rowsVisible);