Tuesday, 16 July 2013

multi selection in form

public boolean modified()
{
    boolean ret;
    container c,v;
    int i;
    ret = super();
    if (ret)
    {
        c = msCtrl.get();  // get RecIds of the selected rows
        v = msCtrl.getSelectedFieldValues(); // get actual value of the selected rows
        for (i = 1; i <= conLen(c);i++)
        {
         //  conPeek(c,i);
            info(conPeek(v,i));
        }
    }
   return ret;
}


No comments:

Post a Comment