<div class="form">
<asp:ScriptManager ID="ExchangeGroupsScriptManager" runat="server" />
<asp:Label ID="EditExchangeGroupsLabel" runat="server" ForeColor="Red" />
<asp:GridView ID="EditExchangeGroupsGrid" runat="server" AutoGenerateColumns="False"
ShowFooter="True" CellSpacing="1" DataKeyNames="ExchangeGroupID" GridLines="None"
CssClass="products-table" HeaderStyle-CssClass="header" RowStyle-CssClass="row"
OnRowCancelingEdit="EditExchangeGroupsGrid_RowCancelingEdit" OnRowCommand="EditExchangeGroupsGrid_RowCommand"
OnRowEditing="EditExchangeGroupsGrid_RowEditing" SelectedIndex="1" AutoGenerateSelectButton="True"
OnSelectedIndexChanged="EditExchangeGroupsGrid_Manage" OnRowUpdating="EditExchangeGroupsGrid_RowUpdating"
AllowPaging="True" OnPageIndexChanging="EditExchangeGroupsGrid_PageIndexChanging">
<Triggers>
<asp:AsyncPostBackTrigger controlid="EditExchangeGroupImageButton" eventname="CommandName" />
</Triggers> <Triggers>
<asp:AsyncPostBackTrigger controlid="UpdateExchangeGroupImageButton" eventname="CommandName" />
</Triggers> <Triggers>
<asp:AsyncPostBackTrigger controlid="EditExchangeGroupImageButton" eventname="CommandName" />
</Triggers> <Triggers>
<asp:AsyncPostBackTrigger controlid="CancelImageButton" eventname="Click" />
</Triggers> <Triggers>
<asp:AsyncPostBackTrigger controlid="ManageExchangeGroupImageButton" eventname="CommandName" />
</Triggers>
<RowStyle CssClass="row"></RowStyle>
<Columns>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
<asp:ImageButton ID="EditExchangeGroupImageButton" runat="server" CausesValidation="false"
CommandName="Update" ToolTip="Update" ImageUrl="~/Images/neu/media-floppy.png" />
<asp:ImageButton ID="UpdateExchangeGroupImageButton" runat="server" CausesValidation="false"
CommandName="Cancel" ToolTip="Cancel" ImageUrl="~/Images/neu/edit-undo.png" />
</EditItemTemplate>
<ItemTemplate>
<asp:ImageButton ID="CancelImageButton" runat="server" CausesValidation="false" CommandName="Edit"
ToolTip="Edit" ImageUrl="~/Images/neu/accessories-text-editor.png" />
</ItemTemplate>
<FooterTemplate>
<asp:ImageButton ID="AddImageButton" runat="server" ToolTip="Add" CausesValidation="false"
ImageUrl="~/Images/neu/list-add.png" CommandName="Add" />
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Manage">
<ItemTemplate>
<asp:ImageButton ID="ManageExchangeGroupImageButton" runat="server" CausesValidation="false"
CommandName="Manage" ToolTip="Update" ImageUrl="~/Images/neu/media-floppy.png" />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="ExchangeGroupID">
<EditItemTemplate>
<asp:Label ID="EditExchangeGroupIDLabel" runat="server" Text='<%# Bind("ExchangeGroupID") %>'></asp:Label>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="ItemExchangeGroupIDLabel" runat="server" Text='<%# Eval("ExchangeGroupID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Name">
<EditItemTemplate>
<asp:TextBox ID="EditExchangeGroupNameTextBox" runat="server" Text='<%# Bind("Name") %>'></asp:TextBox>
</EditItemTemplate>
<FooterTemplate>
<asp:TextBox ID="AddExchangeGroupNameTextBox" runat="server" Width="300px"></asp:TextBox>
</FooterTemplate>
<ItemTemplate>
<asp:Label ID="ItemExchangeGroupNameLabel" runat="server" Text='<%# Eval("Name") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="UpdatedBy">
<EditItemTemplate>
<asp:Label ID="EditExchangeGroupUpdatedByLabel" runat="server" Text='<%# Bind("UpdatedBy") %>'></asp:Label>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="ItemExchangeGroupUpdatedByLabel" runat="server" Text='<%# Eval("UpdatedBy") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Updatedat">
<EditItemTemplate>
<asp:Label ID="EditExchangeGroupUpdatedatLabel" runat="server" Text='<%# Bind("UpdatedAt") %>'></asp:Label>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="ItemExchangeGroupUpdatedatLabel" runat="server" Text='<%# Eval("UpdatedAt") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<HeaderStyle CssClass="header"></HeaderStyle>
</asp:GridView>
</div>
<div style="clear: both">
</div>
|