Reputation: 791
A third-party Javascript function requires native HTML <form>
to be passed in. I have a Ext.form.Basic
object. How can I convert it to a native HTML form?
Upvotes: 2
Views: 194
Reputation: 4355
There is a config for Ext.form.Basic
, standardSubmit
(boolean). If this is set to true then when submit()
is executed it will submit a standard html form. Check out sencha docs for more info
Upvotes: 2