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...
Continue reading...