Flyfishes

Gridview problem for stackoverflow

Jun 19th, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 2.67 KB | None | 0 0
  1. <asp:GridView ID="grdOffices" runat="server" AllowSorting="True" AutoGenerateColumns="False"
  2.         CellPadding="4" CssClass="UI_small" DataSourceID="objOffices" EnableModelValidation="True"
  3.         ForeColor="#333333" GridLines="None">
  4.         <RowStyle BackColor="#F7F6F3" Font-Size="Small" ForeColor="#333333" />
  5.         <Columns>
  6.             <asp:BoundField DataField="COF_Name" HeaderText="Name" SortExpression="COF_Name" />
  7.             <asp:BoundField DataField="COF_Guid" HeaderText="Id" SortExpression="COF_Guid" />
  8.             <asp:CheckBoxField DataField="COF_MapNGuideEnabled" HeaderText="Map'N'Guide" SortExpression="COF_Guid" >
  9.  
  10.             </asp:CheckBoxField>
  11.             <asp:BoundField DataField="COF_InvoiceReference" HeaderText="Inv. Ref" SortExpression="COF_InvoiceReference" />
  12.             <asp:BoundField DataField="COF_AddrLine1Inv" HeaderText="Receiver" SortExpression="COF_AddrLine1Inv" />
  13.             <asp:BoundField DataField="COF_StreetInv" HeaderText="Street" SortExpression="COF_StreetInv" />
  14.             <asp:BoundField DataField="COF_StreetNoInv" HeaderText="Street#" SortExpression="COF_StreetNoInv">
  15.                 <controlstyle Width="32px">
  16.                 </controlstyle>
  17.             </asp:BoundField>
  18.             <asp:BoundField DataField="COF_ZipCodeInv" HeaderText="ZIP" SortExpression="COF_ZipCodeInv">
  19.                 <controlstyle Width="50px">
  20.                 </controlstyle>
  21.             </asp:BoundField>
  22.             <asp:BoundField DataField="COF_CityInv" HeaderText="City" SortExpression="COF_CityInv" />
  23.             <asp:BoundField DataField="COF_CountryInv" HeaderText="Country" SortExpression="COF_CountryInv" />
  24.             <asp:BoundField DataField="COF_VATNumber" HeaderText="VAT#" SortExpression="COF_VATNumber">
  25.                 <controlstyle Width="80px">
  26.                 </controlstyle>
  27.             </asp:BoundField>
  28.            
  29.             <asp:CommandField ShowEditButton="True" EditImageUrl="~\Images\table_edit.jpg"
  30.             CancelImageUrl="~\Images\stop.png"
  31.             UpdateImageUrl="~\Images\accept.png"
  32.             headertext="Edit">
  33.                 <ItemStyle Font-Size="X-Small" />
  34.             </asp:CommandField>
  35.         </Columns>
  36.         <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
  37.         <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
  38.         <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
  39.         <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" Font-Size="Small" />
  40.         <EditRowStyle BackColor="#999999" />
  41.         <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
  42.     </asp:GridView>
Advertisement
Add Comment
Please, Sign In to add comment