This question is locked. New answers and comments are not allowed.
In our telerik grid we have a column in it a button
When I look a this button at runtime it gets as Id the row number it is in.
The column before this one is a textbox column.
What I like to have is when I filled out the textbox with something and when I hit enter the button beside it is fired.
Is this possible?
Regards,
Gerard
columns.Bound(v => v.Koop).Width(45) .HeaderHtmlAttributes(new { title = "Buy direct" }) .Filterable(false) .ClientTemplate("<input type='button' value=' ' text='BesteldAantal' class='koopbutton'/>");When I look a this button at runtime it gets as Id the row number it is in.
The column before this one is a textbox column.
columns.Bound(v => v.BesteldAantal).Width(70) .Filterable(false) .ClientTemplate(Html.TextBox("BesteldAantal",string.Empty, new { @class = "besteldaantal"}).ToString());Is this possible?
Regards,
Gerard