Fixed international problem in JavaScript file

This commit is contained in:
khenn 2010-08-10 20:42:58 -05:00
parent adf3fe68b0
commit c3989308fa
3 changed files with 14 additions and 5 deletions

View file

@ -110,7 +110,7 @@ function deleteRow(row,ttbody) {
ttbody.removeChild(row);
return;
}
alert("The first row may not be deleted. Please adjust your query appropriately");
alert(first_row_error_msg);
return;
}
@ -359,5 +359,8 @@ YAHOO.util.Event.onDOMReady( function () {
loadClasses(document.getElementById("className_formId"));
loadWhereRows(document.getElementById("whereBody"));
loadOrder(document.getElementById("orderBody"));
};
});