cancel
Showing results for 
Search instead for 
Did you mean: 

Hide in FrontEnd Screen

Former Member
0 Kudos

Hi All,

I Have a question in BHTML.....

I want hide this select option from frontend.

Thanks for your time....

Sample Code


<select name="LIST" align=center multiple size="25" width="100%">
<option value="HEAD">--List of Items--</option>
</select>

Accepted Solutions (1)

Accepted Solutions (1)

ChrisSolomon
Active Contributor
0 Kudos

Why would you have several SELECT controls all named "List"?!?!?! It's not pretty but you could also surround the SELECT in a DIV with it's display style set to "none" so you in effect would hide the select although it is there. Downside is that since it is there, if someone knows what they are doing, they could set values for it depending on your form's action.

Former Member
0 Kudos

Thanks Chris....

I solved my problem using Input type....

Thanks

Raghu

Answers (1)

Answers (1)

ChrisSolomon
Active Contributor
0 Kudos

Simply comment out the code segment....

<!-- BEGIN OF COMMENT

your code...

END OF COMMENT -->

soooo.....


<!-- 
<select name="LIST" align=center multiple size="25" width="100%">
<option value="HEAD">--List of Items--</option>
</select>
-->

Former Member
0 Kudos

This code is for SRM-EBP-ITS....

I want hide in front end only. If i comment it i got the error. becasue I used the Select name (LIST) in lot of the places in the page...

Thanks

Raghu