"*" for required in wrong place when we set caption (for SearchPickerField) #PL-2642

This commit is contained in:
Konstantin Devyatkin 2013-09-23 09:13:47 +00:00
parent 8b21292528
commit 908135ac05

View File

@ -148,6 +148,16 @@ public class WebSearchPickerField extends WebSearchField implements SearchPicker
return pickerField.getDescription();
}
@Override
public void setCaption(String caption) {
pickerField.setCaption(caption);
}
@Override
public String getCaption() {
return pickerField.getCaption();
}
@Override
public Action getAction(String id) {
return pickerField.getAction(id);