X++ code to Delete multiple selected records from a form
This code will delete the selected records from the form.
Note :- Override clicked method of button. And enable multi select property of the button and put the code
public void clicked()
{
super();
Employee_ds.deleteMarked();
}
Comments
Post a Comment