Categories | Question details Back To List | ||
DHX Grid : Customize the alert for Incorrect XML Hi, I want to customize the following error alert message. How to do it ???? Image Link : http://img254.imageshack.us/my.php?image=incorrectxmllq7.jpg Answer posted by Support on Sep 15, 2008 09:43 You can set own error handler: dhtmlxError.catchError("LoadXML",my_error_xml); function my_error_xml(type, name, data){ alert(your_text_here) return false } |