lookup field - onchange event
August 12th, 2008
Hi Guys,
I have noticed that sometimes onchange code for a lookup needs some time (1sec) than to run its code.
Heres an example of a 1 second wait (wait until the lookup is populated with the lookup id, name etc):
window.setTimeout(getDetails, 1000);
function getDetails()
{
if(crmForm.all.ownerid.DataValue[0].id != null)
{
// do something
}
}
Recent Comments