Iam using Vtypes for Changpassword window.
My requirment is need to use only vtypes for all required/validations fields
So with out enter data clik on save its shows bubbles for required fields,but also show vtype for oldpassword not match.So how can use vtype after hitting database(From server) So is it possible?How
please provide some idea
Thanks in advance
You cannot use
Ext.form.VTypeson the server unless you use some sort of JavaScript server (node.jswith an ExtJS adapter – if there is one). You didn’t mention the programming language you use on the server, so the answer is quite generic. To return errors from form posts that will be displayed as form field errors, your response to the form submit must conform to the following format:The important part is the
errors-structure. It contains key-value-pairs with the key being the name of the form field you’d like to display the error on and the value being the error message that will be displayed.