Hi All;
I need to add notification for the sub grid
If the sub grid is not null set notification else clear notification
function AdditionalDetails()
{
var grid = document.getElementById("AdditionalNeeds");
if (grid != null)
{
alert("Hi");
//set notification
}
if sub grid not equals null
clear notification
}
Can anyone please help me with the subgrid code?
Any help much appreciated
Thanks
Pradnya07