Nested multifield for components
Hi All,
I am using custom xtype making 3 textfield as multifield. Data saved under content node is
{"groupId" : "1", "groupName" : "Manager", "groupInformation" : "Managers"}
Now, under one textfield I want another multifield for two text field so output should be
{"groupId" : "1", "groupName" : "Manager", "groupInformation" : {"roleType" : "Managers", "rolechange" : "associate"} }
I am returning data in above format from my extjs file and want to achieve result in return function in extjs only.
Thanks