Related questions
How to get field value of selected Row Devexpress GridView?
I use a DevexpressGridView to display all TOPIC (id,title,content)
<dx:ASPxGridView ID="gv" runat="server"
OnSelectionChanged="gv_SelectionChanged" >
I have grid_SelectionChanged event:
protected void gv_SelectionChanged(object sender, EventArgs e)
{
int id= selected row...???; //how …
Devexpress or Telerik Controls comparison
I am looking into purchasing either dev express or telerik to aid in the development of our applications.
We are mainly an asp.net outfit but we are starting to make more and more use of silverlight and mvc.
I …
Rowcommand do not fire after clicking button
I have already find out the solution, i just want to post it so this may be useful for some people
This is the button that use command
<dxwgv:ASPxGridView ID="gdvxUsers" runat="server" AutoGenerateColumns="False" Width="100%" KeyFieldName="UserName" …