vote up 2 vote down star
1

I have an ASP.NET page with a gridview control on it with a CommandButton column with delete and select commands active.

Pressing the enter key causes the first command button in the gridview to fire, which deletes a row. I don't want this to happen. Can I change the gridview control in a way that it does not react anymore to pressing the enter key?

There is a textbox and button on the screen as well. They don't need to be responsive to hitting enter, but you must be able to fill in the textbox. Currently we popup a confirmation dialog to prevent accidental deletes, but we need something better than this.

This is the markup for the gridview, as you can see it's inside an asp.net updatepanel (i forgot to mention that, sorry): (I left out most columns and the formatting)

<asp:UpdatePanel ID="upContent" runat="server" UpdateMode="Conditional">
    	<Triggers>
    		<asp:AsyncPostBackTrigger ControlID="btnFilter" />
    		<asp:AsyncPostBackTrigger ControlID="btnEdit" EventName="Click" />
    	</Triggers>
    	<ContentTemplate>
    		<div id="CodeGrid" class="Grid">
    			<asp:GridView	ID="dgCode" runat="server">
    				<Columns>
    					<asp:CommandField SelectImageUrl="~/Images/Select.GIF"
    										ShowSelectButton="True"
    										ButtonType="Image"
    										CancelText=""
    										EditText=""
    										InsertText=""
    										NewText=""
    										UpdateText=""
    										DeleteImageUrl="~/Images/Delete.GIF"
    										ShowDeleteButton="True" />
    					<asp:BoundField	DataField="Id"	HeaderText="ID"	Visible="False" />
    				</Columns>
    			</asp:GridView>
    		</div>
    	</ContentTemplate>
    </asp:UpdatePanel>
flag
I can't reproduce this, which leads me to believe that there is something outside of the Gridview causing the delete button to respond to the Enter key. Do you have some extra javascript running on the form. If you could post your markup that would also be helpful. – dbugger Oct 3 '08 at 13:12

4 Answers

vote up 2 vote down

Every once in a while I get goofy issues like this too... but usually I just implement a quick hack, and move on :)

myGridView.Attributes.Add("onkeydown", "if(event.keyCode==13)return false;");

Something like that should work.

link|flag
Does onkeydown work the same on all browsers for common input elements? Someone here said to use onkeyup because of some Firefox quirk. – CMPalmer Oct 24 '08 at 15:42
I've never had a problem with onkeydown... and that code works in IE, FF, Opera and Safari since the last time I checked (about a year ago). – Timothy Khouri Oct 24 '08 at 17:26
this doesn't work for me. The onkeydown event renders correctly (it's there when i check with view source), but it doesn't prevent the event from firing. – StephaneT Oct 29 '08 at 15:30
vote up 0 vote down

In Page_Load, set the focus on the textbox.

link|flag
vote up 0 vote down

Here is a good jQuery way of doing it. This function will automagically add the keydown event handler to all TextBoxes on the page. By using different selectors, you can control it to more or less granular levels:

//jQuery document ready function – fires when document structure loads
$(document).ready(function() {

   //Find all input controls of type text and bind the given
   //function to them
   $(":text").keydown(function(e) {
      if (e.keyCode == 13) {
          return false;
       }
   });

});

This will make all textboxes ignore the Enter key and has the advantage of being automatically applied to any new HTML or ASP.Net controls that you might add to the page (or that may be generated by ASP.Net).

link|flag
vote up 0 vote down

This solution is blocking the enter key on the entire page

Disable Enter Key

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.