D
|
Dale 3/18/2006 |
It was suggested for another user to simply hide the selects in question |
|
K
|
ke5rs author 3/19/2006 |
It was suggested for another user to simply hide the selects in question Find the code in the list.php template as below <SELECT ID="SearchField" NAME="SearchField" SIZE="1"> and add the style="display:' ' " to the select you wish to hide. I tried to find the exact post but I get the feeling that history is being lopped off in the forum for old topics. It will make the fields dissappear but I am not sure on if there will be any effects on existing javascript trying to access the selects. The problem with making things hidden or invisible. :>
|
|
D
|
Dale 3/19/2006 |
Hey John, |
|
K
|
ke5rs author 3/20/2006 |
Hey John, Sorry for the issue. The reply should have been style="display:'none'" to hide a field. style="display:''" will display the field. I should have double checked my reply. <SELECT ID="SearchField" NAME="SearchField" SIZE="1" style="display:none;"> <SELECT ID="SearchOption" NAME="SearchOption" SIZE="1"style="display:none;"> Hope this helps.
|
|