I'm learning Oracle ADF(11g). Please help me with the solution to this scenario:
- I would like to update few fields in a "af:panelFormLayout".
- For example, the fields I have in the form are: Employee, Department, and Salary.
- I would like to update the salary of all the employees of department '90' shown in the form. For this, I have added a check box with the label: Select All Employees, to the form. When the checkbox is selected, all the Employees of the department 90 should be updated with the salary mentioned in the form, else, only one employee 'Steven' salary should be updated. How do I achieve this programmatically?
