Nabarun
Nabarun

Reputation: 791

ExtJS4 - How to convert Ext.form.Basic to HTMLFormElement

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

Answers (1)

weeksdev
weeksdev

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

Related Questions