web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

How to hide button from the design of form using x++ code in ax 2009?

Abdel Fatah Ahmed Profile Picture Abdel Fatah Ahmed

 

if you want to hide button from the design of form using x++ code use the following code in  executeQuery method in the methods of the data source of the specific form  : 


public void executeQuery()

{

 

element.design().controlName("btn_ProcessBatch").visible(false); 

}

here you will write the control name :  ("btn_ProcessBatch")


 

Comments

*This post is locked for comments