1. #1
    Sencha User
    Join Date
    Jan 2012
    Location
    Mumbai
    Posts
    36
    Vote Rating
    1
    mrunal is on a distinguished road

      0  

    Question Unanswered: Dynamic fetching of data from xml based on some parameter

    Unanswered: Dynamic fetching of data from xml based on some parameter


    Hi frnz,

    I'm having an xml of the form

    <root>
    <emp>
    <id>1</id>
    <name>abc</name>
    </emp>
    <emp>
    <id>2</id>
    <name>pqr</name>
    </emp>
    <product>
    <pid>1</pid>
    <pname>ww</pname>
    <pcost>10</pcost>
    </product>
    <product>
    <pid>1</pid>
    <pname>ww</pname>
    <pcost>10</pcost>
    </product>
    <product>
    <pid>1</pid>
    <pname>ww</pname>
    <pcost>10</pcost>
    </product>
    </root>

    Its structure can be anything like this, i don't know in advance.

    Is it possible to create a datastore at runtime based on a value in a function:

    Eg: if i call loadMyStore: function('emp')
    All emp data gets loaded in the store.

    Please suggest what to do?

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,656
    Vote Rating
    435
    Answers
    3108
    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


    So you want to create a form to be created based on a dynamic list of fields based on XML?
    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.

  3. #3
    Sencha User
    Join Date
    Jan 2012
    Location
    Mumbai
    Posts
    36
    Vote Rating
    1
    mrunal is on a distinguished road

      0  

    Question


    no, i want a datastore to be created and populated and i'l use it load data to a list.
    Is it possible?

    Thanks.