Forum Post: RE: Hide/Show Controls

  • Thread starter Thread starter Ricardo Perdigao
  • Start date Start date
Status
Not open for further replies.
R

Ricardo Perdigao

Guest
Hi meyrick, Try the following code: var type = Appery("cboType"); var Btype = Appery("cboBadgeType"); if(type.value == "13") { Btype.parent().show(); } else { Btype.parent().hide(); } The syntax I usually use to hide/show a select is the following: Appery('mobileselect').parent().hide(); Please let us know if it worked. Regards, Ricardo

Continue reading...
 
Status
Not open for further replies.
Back
Top