Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

POST Parameter for checkScript
  • Hi,

    it would be nice if you implement a new setting to configure post-parameters for checkScript.
    On our environment it would be very useful.

    For example:


    'checkScriptData':{
    'action':'checkFile',
    'folderId':'1'
    }


    Before you do the jQuery post call for checkScript you could add checkScriptData variables and send it with the post-request.


    var postData = new Object();
    postData = fileQueueObj;
    for (var name in settings.checkScriptData) {
    postData[name] = settings.checkScriptData[name];
    }
    postData.folder = pagePath + folder;


    If you have further questions, please let me know!
    Greetings
    Tim
  • Howdi,

    I'm trying to send data to checkscript function using GET but only the first variable gets through.

    'checkScript' : 'jQueryUploadifyCheck.php?a=a&b=b',

    I've also tried sending data to the CHECK function with scriptData but nothing seems to work. Any ideas?

    The issue is simple, I need to get some values into my check function.

    Thanks in advance.