Inactive Status

Hi all,

I am having a combo box in first grid when i select Inactive is yes then the particular corresponding records in child grid should be inactive can any one help me…

Thanks in advance…

Hi Jhosap,

In case childTable records inactive means,shouldn’t be able to edit…If that is the case in modified field add the following code…

if(Table.combo == NoYes::Yes)
{
ChidTable_ds.allowEdit(false);
}

Naresh kolli