Hello,
I have a requirement like this,
I have a radGrid with a 2 columns.
Column 1 is a template column with
ItemTemplate as asp:Linkbutton CommandName="Edit"and
EditItemTemplate as RadTextBox
<asp:ImageButton ID="btnQUpdate" CommandName="Update"
<asp:ImageButton ID="btnQCancel" CommandName="Cancel"
Column 2 is GridTemplateColumn with CommandName="Delete"
On click of the Linkbutton column row text, the grid row is setting in to edit mode and textbox is appearing with update and cancel buttons.
What I need here is,
1. I need to set the focus in that text box and select the current text in that box. so that user will be ready to update the text. ( so that setting focus and highlighting text events can be avoided)
2. On press Enter on that textbox the "Update" button click event should invoke.
I am really glad if some body help me to achieve this functionality
Thanks,
Durga