Reputation: 3
I have a requirement which requires me to use a single dialog with two tabs. Each tab should have a CustomMultiField (multiple sets of four fields). I do not know anything about EXT JS. Can some one point me to right direction where I can find something about requirement as above.
Upvotes: 0
Views: 1260
Reputation: 900
If you need something that behave like one, but is not necessarily huge specific ExtJS component or custom xtype, and you do not want to dig hundreds of Adobe ‘support’ pages, trying to find some piece of useful doc.
You can simply use multifield
xtype and write 4 pure JS listeners, that does what you need.
Upvotes: 0
Reputation: 5003
I have built custom components without any explicit understanding of Ext JS. To understand how to set up a dialog with tabs, look at the code for the page
component in /libs/foundation/component/page
. A directory of all the xytpes you can use, like MultiField, is here.
Upvotes: 1