wijmo.upload.wijupload Namespace > options type : action Option |
Default value: ""
Specifies the URL path of the server-side handler that handles the post request, validates file size and type, renames files, and saves the file to the server disk.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijupload("option", "action"); // Set value var newValue; // Type: string $(".selector").wijupload("option", "action", newValue); }); |
Javascript (Specification) | |
---|---|
|
For php: $(".selector").wijupload("option", "action", "../upload.php") For asp.net: $(".selector").wijupload("option", "action", "../handlers/uploadHandler.ashx")