[progress Communities] [progress Openedge Abl] Forum Post: Re: Show Or Hide Field Help!

  • Thread starter Thread starter Vimalkumar Selvaraj
  • Start date Start date
Status
Not open for further replies.
V

Vimalkumar Selvaraj

Guest
Hi, I am guessing you are using NewUI. If so as per doc rbf_showOrHideField() method takes three arguments. First one is fieldName , second argument is true/false decides whether to show Field or not, third argument is true/false decides HideResponsiveColumn or not. So your code should be var code = rbf_getPicklistCode(fieldName); //Pass the field integration name of your picklist field //Show Monthly Income Pension field if code is "Yes" otherwise hide it rbf_showOrHideField("Monthly_Income_Pension", (code==='Yes'),true); There is a syntax error at your code in the second line, there is extra comma at the end and close parenthesis missing. Let me know if this works. Thanks, Vimal

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