This function which works in the 5.12.21 does not work in the new
version .
I am not getting any res ids null with the new version
function LoadSelectedApptCallback(res)
{
var lstSName = document.getElementById("cboApptStuName");
var lstRName = document.getElementById("cboRecommendation");
var lstCName = document.getElementById("cboApptCoordinator");
var lstDName = document.getElementById("cboApptCounsellor");
var ds = res.value;
//if the response wasn't what we expected
if (ds == null || typeof(ds) != "object")
{
return;
}
var apptDate = ds.Tables[0].Rows[0].ApptDate;
document.getElementById("txtApptID").value =
ds.Tables[0].Rows[0].ApptID.toString();
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---