|
Lines 1928-1941
Link Here
|
| 1928 |
column = holdingst_table_settings.columns.find(c => c.columnname == '[% k | html %]'); |
1928 |
column = holdingst_table_settings.columns.find(c => c.columnname == '[% k | html %]'); |
| 1929 |
column.is_hidden = 1; |
1929 |
column.is_hidden = 1; |
| 1930 |
column.cannot_be_toggled = 1; |
1930 |
column.cannot_be_toggled = 1; |
| 1931 |
column.force_visibility = 1; |
|
|
| 1932 |
[% END %] |
1931 |
[% END %] |
| 1933 |
|
1932 |
|
| 1934 |
[% FOR k IN hidden_columns_force.otherholdingst %] |
1933 |
[% FOR k IN hidden_columns_force.otherholdingst %] |
| 1935 |
column = otherholdingst_table_settings.columns.find(c => c.columnname == '[% k | html %]'); |
1934 |
column = otherholdingst_table_settings.columns.find(c => c.columnname == '[% k | html %]'); |
| 1936 |
column.is_hidden = 1; |
1935 |
column.is_hidden = 1; |
| 1937 |
column.cannot_be_toggled = 1; |
1936 |
column.cannot_be_toggled = 1; |
| 1938 |
column.force_visibility = 1; |
|
|
| 1939 |
[% END %] |
1937 |
[% END %] |
| 1940 |
|
1938 |
|
| 1941 |
$("#holdingst").kohaTable( |
1939 |
$("#holdingst").kohaTable( |
| 1942 |
- |
|
|