I'm testing a page that has a list of items in table. You can click on
an icon to delete one of the items. This uses an onclick event -
onclick="javascript:return ConfirmX('t',977);" - which calls the
function below. The function produces a popup with OK and Cancel
buttons.
function ConfirmX(list,id)
{
if (confirm("Are you sure you want to delete this item?"))
AjaxMethod.OnDelete(list,id,RepaintDataCallback);
return false;
}
I've tried all the usual methods, as per FAQ and Unit Tests, to click
OK on the popup but nothing works. I don't get an error message - the
popup just sits there until I manually close it. Can anyone suggest a
solution?
Thanks,
George
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general