SmartGwt 3.0p nightly 1/30/2012
Gwt 2.4
Firefox 6.0
I have a form that has the following fields.......
Employee
StartDate
EndDate
I currently have the Employee Field as a dropdown that is being pulled from an OptionDataSource of employees. So all of the employees are populated in the SelectItem dropdown.
The form in this simple state adds the employee to the ListGrid that I have properly. However, I would like to enable multipleselections through.....
SelectItem.setMultiple(true), and have it add all the selected Employees to the list with the chosen Date for all of them.
For example...
Employees: John Smith, Jane Smith
StartDate: 02/01/2012
EndDate: 02/04/2012
Both John and Jane Smith should each have their own entries in a ListGrid with the same Start/End Date.
How can I accomplish this?
Gwt 2.4
Firefox 6.0
I have a form that has the following fields.......
Employee
StartDate
EndDate
I currently have the Employee Field as a dropdown that is being pulled from an OptionDataSource of employees. So all of the employees are populated in the SelectItem dropdown.
The form in this simple state adds the employee to the ListGrid that I have properly. However, I would like to enable multipleselections through.....
SelectItem.setMultiple(true), and have it add all the selected Employees to the list with the chosen Date for all of them.
For example...
Employees: John Smith, Jane Smith
StartDate: 02/01/2012
EndDate: 02/04/2012
Both John and Jane Smith should each have their own entries in a ListGrid with the same Start/End Date.
How can I accomplish this?
Comment