Hello,
I'm using SmartGWT 3.1d 2012-09-16 and like to know how to use PartialValidation with DynamicForm bound to a Datasource.
I have created a DMI Handler server side that will set ValidationMode to PARTIAL before executing the DSRequest:
But I can't send the values from DynamicForm, because validation happens on the client side when I call saveData.
I've tried to disableValidation calling:
But validation is still ocurring.
What is the right to partially save data, i.e using Partial validation? I couldn't find any pointer in the docs.
I'm using SmartGWT 3.1d 2012-09-16 and like to know how to use PartialValidation with DynamicForm bound to a Datasource.
I have created a DMI Handler server side that will set ValidationMode to PARTIAL before executing the DSRequest:
Code:
request.setValidationMode(ValidationMode.PARTIAL.getValue());
I've tried to disableValidation calling:
Code:
form.setDisableValidation(true); form.saveData(new DSCallback() { ... });
What is the right to partially save data, i.e using Partial validation? I couldn't find any pointer in the docs.
Comment