With my own property editors the validation framework dont work. I think it is due to next code in SwingFormModel:
ValueModel valueModel = getValueModel(formProperty);
if...
Type: Posts; User: besbello; Keyword(s):
With my own property editors the validation framework dont work. I think it is due to next code in SwingFormModel:
ValueModel valueModel = getValueModel(formProperty);
if...
public CommandGroup getMenuBar() {
return menuBarCommandGroup;
}
public CommandGroup getToolBar() {
return menuBarCommandGroup;
}
Its correct?
When commit or revert a form with JFormattedTextField dont work
in SwinFormModel:
public JFormattedTextField createBoundFormattedTextField(
String formProperty,...
If I want disable all the commands in the toolbar?
I could do it rewriting setEnabled of CommandGroup
public void setEnabled(boolean enabled) {
super.setEnabled(enabled);
...
I want disable all the buttons contained in a CommandGroup.
CommandGroup.setEnabled(false)
dont work.
THANKS !!
An implementation of RulesSource, PropertyEditorRegistry, that automatic loads of RulesSource for a package could be writed.
It will work like Introspector do to search BeanInfo providers.
If I...
OK.
I recibe a array of property editors to show.
I will use it as an indexed property
THANKS!!
How use form models to create a form without a base bean.
I want make a dialog to ask for paramaters to do an process, no to edit a bean.