extjs add plugins to dynamic form fields
- by Anurag Uniyal
I am creating a form dynamically from the fields returned from server using json e.g. data is
"items": [
{"xtype": "textfield", "fieldLabel": "Name", "name": "name"},
{"xtype": "textfield", "fieldLabel": "Description", "name": "description"},
{"xtype": "textarea", "fieldLabel": "Text", "name": "text"}
],
Now I want to add a custom…