COMBOBOX: Get selected record - Obtener record seleccionado
Como obtener un record seleccionado de un combobox en gwt smartclient
Record currentSelection = yourSelectItem.getSelectedRecord();
String displayValue = currentSelection.getAttribute(displayValueField);
How to get current record selected in a combo box of gwt smart client
Record currentSelection = yourSelectItem.getSelectedRecord();
String displayValue = currentSelection.getAttribute(displayValueField);
How to get current record selected in a combo box of gwt smart client
Comments
Post a Comment