Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Re: how can we disable the last column?.. at all.. 17.08.2012 10:54
Hi,
if you want to disable all options from the last column, you can select the configuration parameter 'Allow changes' = NO, in order to hide all edition icons.
But if you are not going to use the filters, so you don't even need the 'clean filters' icon, you can hide enterely the last column playing with the styles at the css. Please edit
joomla/modules/mod_listmanager/assets/css/default.css
add this class:
.lm_tableheader.lm_column_last {
display: none;
}
and include a display:none to the other existing last column styles, this way:
.lm_result table thead tr .lm_tableheader_empty {
background: none repeat scroll 0 0 #FFFFFF;
display: none;
}
.lm_result table tbody tr .lm_lasttd {
width: 40px;
display: none;
}
Hope this helps,
Moonsoft Team
www.moonsoft.es
if you want to disable all options from the last column, you can select the configuration parameter 'Allow changes' = NO, in order to hide all edition icons.
But if you are not going to use the filters, so you don't even need the 'clean filters' icon, you can hide enterely the last column playing with the styles at the css. Please edit
joomla/modules/mod_listmanager/assets/css/default.css
add this class:
.lm_tableheader.lm_column_last {
display: none;
}
and include a display:none to the other existing last column styles, this way:
.lm_result table thead tr .lm_tableheader_empty {
background: none repeat scroll 0 0 #FFFFFF;
display: none;
}
.lm_result table tbody tr .lm_lasttd {
width: 40px;
display: none;
}
Hope this helps,
Moonsoft Team
www.moonsoft.es