With my own property editors the validation framework dont work. I think it is due to next code in SwingFormModel:
this valueModel is is the propertyAdapter valueModel, an dont check validation rules.Code:ValueModel valueModel = getValueModel(formProperty); if (valueModel == null) { createFormValueModel(formProperty); // create above returns the display value model appyling the // property editor, the setter listener wants the 'wrapped' value // model... valueModel = getValueModel(formProperty); }
How can validate my own propertyEditors?
THANKS


Reply With Quote