Obout GridView
how to use obout gird how to implement a dropdown list into obout grid
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mahesh ChandPosted May 30, 2011, 10:49 AM
ChrisPosted May 30, 2011, 4:15 AM
You can use templates for the Obout Grid:
http://www.obout.com/grid/grid_templates.aspx
Check the "aspnet_templates.aspx" sample from the Grid folder in their Suite.
SanthonabinPosted May 19, 2011, 5:14 AM
Hi ...Implement this code into your gridview..
<asp:TemplateField HeaderText ="Feedback">
<ItemTemplate >
<asp:Label id="lblfeedback" Text='<%#Eval("feedback") %>' runat="server">asp:Label> ItemTemplate>
<EditItemTemplate >
<asp:DropDownList ID="drpFeedback" runat="server" >
<asp:ListItem Text ="Good" Value="Good" Selected="True">asp:ListItem>
<asp:ListItem Text ="Worst" Value="Worst">asp:ListItem> <asp:ListItem Text ="Not Worst" Value="Not Worst">asp:ListItem> <asp:ListItem Text ="Better" Value="Better">asp:ListItem> asp:DropDownList>
EditItemTemplate>
asp:TemplateField>Hope will help you!
Anil KumarPosted May 19, 2011, 2:26 AM
You have to give the path.