Showing posts with label form label update. Show all posts
Showing posts with label form label update. Show all posts

Wednesday, October 4

AX 2012 - How to change the capture of form at runtime in X++

There are certain requirement in which we have to change the name of form based on certain field value, the below line can be inserted in any method where you want like active, init etc...



//field condition
if (condition)
{
       element.design().caption('New Label');
}

hope this will help you..

Popular Posts