Re: "REMOVE" item detection

  •  08-28-2008, 9:35 AM

    Re: "REMOVE" item detection

    Hi,
     
    Currently we did not provide the remove event for that yet.
     
    You can check the items to find the removed item :
     
    foreach(AttachmentItem item in control1.Items)
    {
        if( !item.Checked && !item.Visible )
        {
            //this item is clicked remove .
        }
    }
     
    We will provide better solution on this in the future.
     
    Regards , Terry .
View Complete Thread