Hi,
I'm creating a RadGrid for managing images as well as RadUpload controls in the EditTemplate of a GridTemplateColumn. What I'm trying to do is capture the upload controls in the insert event, but they return null. Would you please show me how to get them?
Thanks,
Jeff
I'm creating a RadGrid for managing images as well as RadUpload controls in the EditTemplate of a GridTemplateColumn. What I'm trying to do is capture the upload controls in the insert event, but they return null. Would you please show me how to get them?
protected void rgRotator_ItemInserted(object sender, EventArgs e)
{
RadGrid rgRotator = (RadGrid)sender;
RadUpload ruThumbnail = (RadUpload)rgRotator.FindControl("ruThumbnail");
RadUpload ruLarge = (RadUpload)rgRotator.FindControl("ruLarge");
}
Thanks,
Jeff