1. #1
    Sencha User abhijit roy's Avatar
    Join Date
    Nov 2011
    Location
    Mumbai,India
    Posts
    11
    Vote Rating
    0
    abhijit roy is on a distinguished road

      0  

    Default File upload and form submit simultaneously

    File upload and form submit simultaneously


    When you wnat to upload any file use getForm().fileUpload= true and when want a simple submit use
    getForm().fileUpload= false; and pass the params. when you do fileUpload =true you wont be able to get the params after submit.


    Code:
    var url="../urlServlet";
    var condition=Ext.getCmp('radioGrp').getValue();
    if(condition==='fileUpload')
    Ext.getCmp('myuploadform').getForm().fileUpload= true;
    else
    Ext.getCmp('myuploadform').getForm().fileUpload= false;
    Ext.getCmp('myuploadform').getForm().submit({
    reset:false,
    url: url,
    waitMsg:'Uploading File..',
    timeout: 30000,
    params:{filepath:path},
    success: function(form, action)
    {extAlert(action.result.msg);
    Ext.getCmp('myuploadform').getForm().reset();},
     failure: function(form,action)
    {extAlert(action.result.msg);}
    });




  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


    Ext JS 3 or 4?
    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.