General X++ Development
How do I hide a form control in X++?
How do I hide a form control in X++?
1 answer
Write an answerSet the control's visible property.
YourControl.visible(false);Use visible(false) when the user should not see the control at all. If they should see the value but not change it, use enabled(false) or datasource field edit permissions instead.
Know the solution?
Sign in to contribute an answer and build your community reputation.
Sign in to answer