i want to rename add button to replace
Hello sushant zanzane,
Please let me know if you need further assistance with this issue.
You can find our API documentation for the igUpload from our documentation here:
http://help.infragistics.com/jQuery/2014.1/ui.igupload#options
As for setting the tooltip of the Upload button, there does not appear to be an available option for it like there is with the label.
This can still be achieved with the following jQuery code (where "uploadID" is the ID of your igUpload's element):
$("#"+ uploadID +"_ibb_fp").attr("title", "Custom Tooltip Text");
If you need further assistance with this, please let us know.
Hello martin,
Is there any document where can get all the methods and options list of upload control, because now I change the name of button but I can't change the tooltip of it.
Hello Sushant,
There is an option for that called "labelAddButton".
Here is a code snippet:
$("#igUpload1").igUpload({ labelAddButton: "Replace",});
Hope this helps,Martin PavlovInfragistics, Inc.