1. #1
    Touch Premium Member
    Join Date
    Jan 2009
    Posts
    43
    Vote Rating
    0
    Designworxz is on a distinguished road

      0  

    Exclamation Best way to load Form from Complex store

    Best way to load Form from Complex store


    Is there any best way to load form from Comples store record?

    Form
    Code:
    items:[
    								{  xtype:'fieldset',
    									 defaults: {
    											required: true,	
    											labelAlign: 'left',
    											labelWidth: '27.5%'
    										},
    									items:[{
    											xtype: 'textfield',
    											name : 'firstname',
    											label: 'Name',
    											useClearIcon: true,
    											autoCapitalize : false
    										   },
    										   {
    											xtype: 'textfield',
    											name : 'lastname',
    											label: 'Surname',
    											useClearIcon: true,
    											autoCapitalize : false
    										  },
    {
    											xtype: 'textfield',
    											name : 'No',
    											required: false,
    											label: 'No',
    											useClearIcon: true,
    											autoCapitalize : false
    										  },
    										  {
    											xtype: 'textfield',
    											name : 'Street',
    											required: false,
    											label: 'Street',
    											useClearIcon: true,
    											autoCapitalize : false
    										 },
    										 {
    											xtype: 'textfield',
    											name : 'City',
    											required: false,
    											label: 'City',
    											useClearIcon: true,
    											autoCapitalize : false
    										 }
    ]
    Store data
    Code:
    [{"PersonDetail":{"Name":"Peter","Surname":"scott"},"PostalAddress":{"No":"1","Street":"Newland St","City":"AUS"}}]

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    I would merge all values into one Object
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread