Style Issues

Last post 02-19-2009, 9:54 PM by cutechat. 1 replies.
Sort Posts: Previous Next
  •  02-19-2009, 3:10 PM 49017

    Style Issues

    I have UploadAttachments up and working in my project.  My only issue is getting some basic style.  Here is what I have:
     
    <CuteWebUI:UploadAttachments InsertText="Upload PDF Scan Package file(s)" runat="server" ID="_attachments" onunload="_attachments_Unload">               
    <TableStyle Width="100%" GridLines="Both" BackColor="RoyalBlue"/>               
    <HeaderRowStyle BackColor="AliceBlue" ForeColor="Black" />               
    <ItemLabelStyle  ForeColor="Gold"/>               
    <ItemCellStyle BackColor="RoyalBlue" />               
    <VALIDATEOPTION AllowedFileExtensions="pdf" />                           
    </CuteWebUI:UploadAttachments>
     
    Only ItemLabelStyle &  ItemCellStyle are  working...I have tried adding a CssClass also to no avail....please help
  •  02-19-2009, 9:54 PM 49029 in reply to 49017

    Re: Style Issues

    Please check this example:
     
     
    1. <style>  
    2.  /*Pre Defined*/   
    3.  .AjaxUploaderProgressTable{}   
    4.  .AjaxUploaderProgressBarText{}   
    5.  .AjaxUploaderProgressInfoText{}   
    6.  .AjaxUploaderCancelAllButton{}   
    7.  .AjaxUploaderQueueTable   
    8.  {   
    9.   background-color:Darkred!important;   
    10.  }   
    11.  .AjaxUploaderQueueTableRow   
    12.  {   
    13.   background-color:Orange!important;   
    14.   color:Darkgreen;   
    15.  }   
    16.  .AjaxUploaderAttachmentsTableRow   
    17.  {   
    18.   background-color:Orange!important;   
    19.  }   
    20.  /*User Defined*/   
    21.  .Table   
    22.  {   
    23.   background-color:Darkgreen!important;   
    24.  }   
    25.  .Cell   
    26.  {   
    27.   Color:Darkred;   
    28.  }   
    29. </style>  
    30. <CuteWebUI:UploadAttachments runat="server" ID="UploadAttachments1">  
    31.  <ItemCellStyle CssClass="Cell" />  
    32.  <TableStyle CssClass="Table" />  
    33. </CuteWebUI:UploadAttachments>  
     
    Regards,
    Terry
     
View as RSS news feed in XML