Re: Anyway to customize output table?

  •  11-18-2008, 7:58 AM

    Re: Anyway to customize output table?

    Hi,
     
    Please check these properties :
     
    ItemTemplate
    ItemTemplatePosition
    TableHeaderTemplate
     
    Or you can draw a table on the OnPreRender method:
     
    protected override void OnPreRender(EventArgs args)
    {
        base.OnPreRender(args);
        uploaderAttachment1.GetItemsTable().Visible=false;//hide the default table...
        foreach(AttachmentItem item in uploaderAttachment1.Items)
        {
            //fill item info into your custom data list control!
        }
    }
     
    Regards,
    Terry
View Complete Thread