simpliest way to change language for AjaxUploader?

Last post 09-29-2009, 9:58 AM by cutechat. 1 replies.
Sort Posts: Previous Next
  •  09-28-2009, 5:49 AM 55912

    simpliest way to change language for AjaxUploader?

    Hello! I`m searching the way to change language for alert messages. Is it possible? If yes, then how?
     Thank You for Your response.
  •  09-29-2009, 9:58 AM 55935 in reply to 55912

    Re: simpliest way to change language for AjaxUploader?

    Hi,
     
    1 - Use the server control properties to set the strings.
     
    2 - Use client side event to show custom error message:
     
    <script>
    function CuteWebUI_AjaxUploader_OnError(msg)
    {
        //check the msg , and replace it to custom message :
        alert("my error msg");
        return false;//cancel the default alert box
    }
    </script>
View as RSS news feed in XML