I have used event javascript but list lookup change event does not get fired.
Page 1 / 1
To set a value to lookup control:
use 'LookupId;#LookupValue' like below.
NWF$(document).ready(function()
{
NWF$('#'+ddlLookup).val('5;#Servicing');
});
For Change Event:
you can change event
NWF$('#'+ddlLookup).change(function()
{
var lookupVal = NWF.RuntimeFunctions.parseLookup(NWF$('#'+ddlLookup).val(),true);
if(lookupVal == 'Servicing')
{
alert('Servicing');
}
});
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.