In the prospects form (smmBusinessRelationsListPage
) i want to make a modification for the following:
If a grid line is selected and CheckboxA of that line is checked, then show a dialog: "Checkbox is checked!"
My first thought is to build this check in the active()
method of the form smmBusinessRelationsListPage
What is the best way to accomplish this? Do i need a specific function to check the line?
Or would:
if (checkboxA == true) {
info ("Checkbox checked!");
}
be enough to check the selected line?