1. #1
    Sencha User drumforhim's Avatar
    Join Date
    May 2011
    Location
    Greece
    Posts
    9
    Vote Rating
    0
    drumforhim is on a distinguished road

      0  

    Default Unanswered: Rendering delay

    Unanswered: Rendering delay


    Hi everyone,
    I'm working on an application that has some forms and the forms have many fields. as far as fields i don't use the usual method
    Code:
    items :[
      {
          prop1 : etc,
         prop2 : etc,
        ....
      }
    ]
    but i've created a namespace for my application with some functions that create the fields
    eg.
    Code:
    myApp.formshelpers = {
         createNameField : function(options){
          return Ext.create('Ext.form.field.Text',{
             prop1 : options.prop1,
             pro2 : options.prop2,
             ......
          })
       },
       createSearchField : function(options){
           return Ext.create('Ext.form.field.Text',{
                   ......
           });
      }
    };
    and i call these functions whenever i want in my items : [] array of each form.
    I do that to keep the code clean and organized. so as i'm not that experienced i wanted to ask if that method causes any delay on the rendering of the form. do i have to use the classic method that creates the items rightaway or this method doesn't cause any delay?
    Thank you!

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


    It's valid to do that, the only issues I see is a very very small perf hit when executing another function and could hinder configurability. Both things won't mean too much really.
    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