w2ui
Home
Get started
Demos
Docs
Blog
Support
Layout
Grid
Toolbar
Sidebar
Tabs
Form
Popup
Utilities
ver 1.3
ver 1.4
ver 1.5
ver 2.0
Form
Overview
Events
Properties
Methods
Fields
Numeric
Date & Time
Drop Lists
Multi Selects
Upload
Custom
w2form.clear
Resets the form.
clear()
Returns
undefined
.
Description
Clears
.record
object, sets
.recid
to 0, removes all tags and resets fields on the screen to a blank state. If you have the form defined in the following way:
$('#form').w2form({ name : 'form', recid : 10, url : '/server/url', formURL : '/server/path', fields: [ { name: 'first_name', type: 'text', required: true }, { name: 'last_name', type: 'text', required: true }, { name: 'email', type: 'email' } ], record: { first_name : 'John', last_name : 'Doe', email : 'jdoe@email.com' }, actions: { "save": function () { this.validate(); }, "reset": function () { this.clear(); } }, postData: [ param1 : 'value1', param2 : 'value2' ] });
You can do
w2ui['form'].clear();
User Comments
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus