Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Tejas Shah on Sep 15, 2008 06:41
open dhtmlx forum
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
}