Hello,
I have this radgrid that i want to perform edit funtion. Going into edit mode wasn't a problem.
But i can see the UPDATE and CANCEL buttons. here is my radgrid and i use datatable to populate it.
any suggestion?
<telerik:RadGrid ID="RadGrid1" runat="server" ShowFooter="true" AutoGenerateColumns="False"
AllowSorting="true" EnableEmbeddedSkins="True" Skin="Sunset" Width="1000px"
EnableLinqExpressions="false" OnItemDataBound="RadGrid1_ItemDataBound" OnNeedDataSource="RadGrid1_NeedDataSource1"
OnItemCreated="RadGrid1_ItemCreated">
<MasterTableView DataKeyNames="Account" EditMode="InPlace">
<Columns>
<telerik:GridButtonColumn Text="Edit" CommandName="Edit" ButtonType="PushButton">
<ItemStyle HorizontalAlign="Center" CssClass="BorderLeft BorderRight BorderBottom" />
<FooterStyle CssClass="BorderLeft BorderRight BorderBottom" />
</telerik:GridButtonColumn>
<telerik:GridBoundColumn DataField="LongAccount" HeaderStyle-HorizontalAlign="Center"
UniqueName="LongAccount" HeaderText="Account" ReadOnly="true" ShowSortIcon="false"
FooterText="Sub Total">
<HeaderStyle HorizontalAlign="Center"></HeaderStyle>
<ItemStyle HorizontalAlign="Left" Width="100px" CssClass="BorderRight BorderBottom" />
<FooterStyle CssClass="BorderRight BorderBottom" />
</telerik:GridBoundColumn>
</Columns>
<EditFormSettings>
</EditFormSettings>
</MasterTableView>
<FilterMenu EnableEmbeddedSkins="False">
</FilterMenu>
</telerik:RadGrid>
I have this radgrid that i want to perform edit funtion. Going into edit mode wasn't a problem.
But i can see the UPDATE and CANCEL buttons. here is my radgrid and i use datatable to populate it.
any suggestion?
<telerik:RadGrid ID="RadGrid1" runat="server" ShowFooter="true" AutoGenerateColumns="False"
AllowSorting="true" EnableEmbeddedSkins="True" Skin="Sunset" Width="1000px"
EnableLinqExpressions="false" OnItemDataBound="RadGrid1_ItemDataBound" OnNeedDataSource="RadGrid1_NeedDataSource1"
OnItemCreated="RadGrid1_ItemCreated">
<MasterTableView DataKeyNames="Account" EditMode="InPlace">
<Columns>
<telerik:GridButtonColumn Text="Edit" CommandName="Edit" ButtonType="PushButton">
<ItemStyle HorizontalAlign="Center" CssClass="BorderLeft BorderRight BorderBottom" />
<FooterStyle CssClass="BorderLeft BorderRight BorderBottom" />
</telerik:GridButtonColumn>
<telerik:GridBoundColumn DataField="LongAccount" HeaderStyle-HorizontalAlign="Center"
UniqueName="LongAccount" HeaderText="Account" ReadOnly="true" ShowSortIcon="false"
FooterText="Sub Total">
<HeaderStyle HorizontalAlign="Center"></HeaderStyle>
<ItemStyle HorizontalAlign="Left" Width="100px" CssClass="BorderRight BorderBottom" />
<FooterStyle CssClass="BorderRight BorderBottom" />
</telerik:GridBoundColumn>
</Columns>
<EditFormSettings>
</EditFormSettings>
</MasterTableView>
<FilterMenu EnableEmbeddedSkins="False">
</FilterMenu>
</telerik:RadGrid>