Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do you want the combo box to appear in some rows, and the textbox in others - but in the same column?
I did it.If so, add both controls to the same column,
then use the column's DynamicCurrentControl property to decide which one you want to display in a given row
THIS.Column3.DynamicCurrentControl = ;
"IFF(<some condition>, 'text1', 'combo1')"
'Job.Roll.Sno'='1'
THIS.Column4.DynamicCurrentControl = ;
"IIF(Job.Roll.Sno=1, 'text1', 'combo1')"
THIS.Column4.DynamicCurrentControl = ;
"IIF(INLIST(Job.Roll.Sno, 1, 2, 3, 10), 'combo1', 'text1')"
THIS.Column4.DynamicCurrentControl = ;
"IIF(INLIST(Job.Roll.Sno, '1', '2', '3', '10'), 'combo1', 'text1')"