Re: Hide Cancel Button

  •  06-14-2009, 8:34 PM

    Re: Hide Cancel Button

    Hi,
     
    The uploader will set the display property again.
     
    You can use CSS to hide it:
     
    Server:
      uploader.CancelButton.CssClass="HideIt";
     
    (you can also set the css class by javascript)
     
    Client:
     
    <style>
    .HideIt
    {
        display:none!important;
    }
    </style>
     
    Regards,
    Terry
     
View Complete Thread