The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

ASP .NET - Submit on Enter - Prevent 'defaultbutton' when other button has focus

I have a search form consisting of the following... <asp:Panel DefaultButton="btnSearch" ... > [...search criteria fields...] <asp:Button ID="btnReset" OnClick="btnReset_Click" ... ...
-1
votes
0answers
75 views

IE 10 - using the enter key to submit when a default button property is used

Has anyone encountered a problem with the enter key while using the defaultButton property of an asp:panel in IE 10? This works fine in all other versions of IE, but does not seem to work in IE10. To ...
0
votes
2answers
196 views

How do i get asp:Panel Default Button to fire button click event?

I have three asp net text boxes that will contain search criteria for searching a table. I would like the search to work like Google. When the enter key is pressed to have the click event on the ...
1
vote
1answer
83 views

Set the default button in jpanel depending on focus.

i have several JPanels which each implement their logic, buttons and fields on their own. This panels are all added on a JFrame but sometimes on another Panel which is then added on the frame... What ...
0
votes
1answer
121 views

getRootPane() default button - Is this a bug?

I have made an SSCCE. Please note that it must be Windows Look&Feel. import java.awt.*; import javax.swing.*; public class DefaultButtonBug { private static final String LAF_WINDOWS = ...
1
vote
5answers
289 views

Set default button inside div - but I don't know ID / class

I have a page where user controls are loaded dynamically into a div/panel. I don't know anything about the content of these user controls, besides they have a button. When the user is inside this ...
1
vote
0answers
163 views

Set the defaultbutton of a panel depending on action in usercontrol, asp.net

When the usercontrol Titlebar is loaded through procesSearchCriteria1 I want the defaultbutton of PNL1 to be SearchButton. Of course when it's loaded through ucBBB I want the SaveButton to be the ...
2
votes
3answers
2k views

How to set the Java default button to react on ENTER key _released_?

In my application I use a Default button. I want it to react when ENTER Key is released. Not when ENTER Key is pressed. I removed the KeyStroke from InputMap of the button. But it didn't work for me. ...
0
votes
1answer
218 views

WPF default button not working when datagrid row is selected

I have used a Datagrid and a button(btnAdd) in WPF.The button is default.I need to call btnAdd_Click(which uses the selected row of the Datagrid) when Enter key is pressed. In other words i need to ...
1
vote
1answer
750 views

Default button not working in asp.net panel

I have an asp.net panel with a default button setting but the button is never trigger when hitting the ENTER button. I searched SO for this question, but could not find any response that works. How ...
1
vote
2answers
495 views

switch masterpage button default button property in ASP.NET

I'm developing an ASP.NET web app (C#, VS2010), I have a master page which has a button (search button) and a textbox, when I press enter, this search button executes, but I don't want this master ...
2
votes
2answers
3k views

How to set the default button for a TextBox in ASP.Net?

I have a page that has two buttons, btnSearch and btnAddUser. The aspx page is as below. As you can see the default button is btnAddUser. But I would like to set the default button to btnSearch when I ...
0
votes
0answers
268 views

default button for panel is not working.?

I have a ajax pop up on which I have Two Buttons YES/NO. I want when pop up comes on screen and user click on enter button. the Yes Button will work. I have set default to yes button, but I don't know ...
0
votes
1answer
93 views

Default button overrides the enter in a rich text control

I have page with a default button assigned. However when I hit enter in a TextBox with Ajax:HtmlEditorExtendor, the form will be submitted. Is it a bug in Ajax? Is there any workaround for this? ...
2
votes
1answer
182 views

how to set default botton in different tabs?

I have a content page that have 4 different tabs. I use following Jquery to control the tabs. I need to set the default button for each tab, so that when the user click Enter, the event of the default ...
0
votes
3answers
142 views

Is this a good workaround for enter button submitting in a text box?

So I have a page, it had multiple textboxes, linkbuttons, and buttons. Currently, a user clicks a linkbutton "Edit" which allows them to enter data in that row, via textboxes. However, upon pressing ...
0
votes
2answers
413 views

MFC: How to get default button of child dialog to work?

I have a child dialog which I created as a new dialog in the resource editor. Then I used a static control on the parent dialog to act as a placeholder. The child control is displayed where the ...
0
votes
1answer
703 views

asp:login default button doesn't work

i'm trying to set a default button to my login control, and after reading several similar questions i learned about the panel default button using the login controls ID <asp:Panel runat="server" ...
0
votes
2answers
1k views

how to make asp:button a default button on entering text to asp:textbox

How can I set default button after text is entered into a text box. This is what I have so far. But it doesn't work <td> <asp:Label ID="displayrowLabel" runat="server" ...
1
vote
2answers
116 views

Detecting default button on a control

This seems very simple, but I can find nothing on a web concerning the behaviour I want to add to my custom control. My custom control is a textBox with a list of choices. When the text entered by ...
0
votes
2answers
246 views

setting the default button in preinitialization

I have a more than one container in a view. I am trying to set default button at the moment page is loaded so that when I press enter, function that handles keydown event called. If I simply set ...
0
votes
3answers
1k views

How to disable buttons get triggered with <Enter> on aspx-pages

I have a aspx-page with several textboxes and buttons. However, when the cursor is in a textbox, one of the buttons is still "in focus". So when I hit the Enter-key the button is pressed. What I want ...
4
votes
3answers
3k views

ASP.NET DefaultButton and MasterPages

In my site i have a search function in the master page (no defaultbutton set there, also not in form). in a content page, i have a login, there i use a asp panel with defaultbutton. but when i click ...
1
vote
1answer
786 views

Panel DefaultButton not works when Textbox is extended by AJAX Toolkit AutoComplete

I am using ASP.NET Panel to set Default Button for some Controls like TextBox but it seems to not work due to AJAX Control Toolkit's AutoCompleteExtender. Pls help.. ! Code is as below: ...
0
votes
1answer
151 views

i am passing models to radiobutton, how can i make one as default?

passing a model to radiobutton which has three different values for example <%: Html:RadioButtonListFor(model=>model.Country, Model.Countries, new {@class="countrytype"})%> these countries has ...
1
vote
2answers
2k views

How to handle ENTER button press on JQuery Dialog Box

I am using JQuery Dialog Box. I have got below code where I am opening my Dialog Box. $('#MyLogin').dialog({ autoOpen: true, width: 450, modal: ...
1
vote
1answer
234 views

Panel containing RadioButtonList does not recognize default button

I have multiple controls within a panel. The last control within the panel is a radio button list. The panel has a default button of "Submit", located outside of the panel on tha page. The page ...
4
votes
2answers
1k views

Setting DefaultButton to button.UniqueID throws exception

The problem I'm trying to solve: I have several text boxes in an asp:Panel. When the user hits Enter from any of those boxes, I want the form to submit as if they've clicked btnAddTag. (When the ...
1
vote
2answers
765 views

default LinkButton on enter in a Master Page

I looked through and through and found no clean solution for this. A colleague of mine did find a pretty dirty solution but I don't see why the solutions in the links reference below does not work ...
0
votes
1answer
503 views

Qt default button on mac

Mac have a capability to specify two default buttons, one activated by return and other by spacebar. One clear example is when you press power button on mac. It gives you a dialog box with quiet a few ...
1
vote
2answers
2k views

Defaultbutton div

I am just curious; does any of you have any good javascriptresources for setting defaultbutton for all elements inside a div? I have a lot of divs that executes various javascriptfunctions and I would ...
5
votes
1answer
5k views

ASP.NET Master page DefaultButton override

I have a master page with a form element and the defaultbutton attribute set to a server-side ImageButton. On one of my pages I want to "override" the masterpage defaultbutton attribute by setting ...
2
votes
4answers
5k views

set linkbutton as default button for asp:panel in asp.net [duplicate]

Possible Duplicate: Link Button on the page and set it as default button, work fine in IE but not in Mozila How to set linkbutton as default button for asp:panel in asp.net? I know a button ...
8
votes
1answer
7k views

enter key in asp.net firing wrong button

I have a text box and many buttons. When user is in some text box and presses the "enter" key then specific button click event is raised. I read on the internet that there are some problems with the ...
1
vote
4answers
2k views

How to avoid InvalidOperationException when setting the defaultbutton in ASPX content

I am trying to set a default button in my ASPX page. I have a master page so the form is there. I have a panel in the content page that holds a table that organizes a number of textboxes, dropdowns ...
1
vote
1answer
873 views

How to disable Qt dialog default button changing with tab navigation

In Qt 4, by default, tabbing through a dialog changes the default button to be the button tabbed to. This makes tabbing look a bit ugly and distracting as extra redraws take place during tab ...
0
votes
1answer
147 views

IIS7 Rewrite changing default button

Hey, I've run into a strange problem regarding default buttons in master pages and IIS7 rewrite module. All my content pages have default buttons set in the code-behind (on prerender), or they are ...
5
votes
5answers
5k views

Silverlight 4 Default Button Service

For a few months I have been successfully using David Justices Default Button example in my SL 3 app. This approach is based on an attached property. After upgrading to SL4, the approach no longer ...
3
votes
1answer
1k views

Can a custom WPF control implement the IsDefault property

I have a custom button control that does not derive from Button. Is it possible for me to implement the equivalent of IsDefault so that the command associated with my control will be invoked. I was ...
2
votes
2answers
2k views

Panel DefaultButton and GridView Control with EditItemTemplate

I have a GridView control on a page with a Panel that has a DefaultButton. I am trying to get the "Update" button to work with the Enter key when a user edits a row. It works fine with the mouse. When ...
0
votes
1answer
625 views

form.defaultbutton does not work in Firefox

i am asking this question because my code has the following which works perfectly on IE but not on any other browsers. Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) ...
3
votes
3answers
1k views

Multiple Default Buttons in a User Control

I have a user control that is comprised of 3 textboxes, 3 buttons and a gridview. I can set the defaultbutton property of the form, but that would only affect one button. Each textbox/button combo ...
0
votes
2answers
1k views

Set an image button to fire when enter key is pressed

Obviously I know how to do this with DefaultButtons within an ASP.NET web form. However, the way our client side developer wrote the code, he has a submit button done via javascript: So the ...
1
vote
5answers
2k views

Good solution to the 'preventing default button on form from firing' problem?

I need a solution for the age old problem of a 'default button' firing undesirably. i.e you hit enter in a text box, but there is a submit button on the form that isn't the one you want to fire (or ...
0
votes
1answer
1k views

How to set the default (submit) button for a page loaded in an iPhone UIWebView (stringByEvaluatingJavaScriptFromString?)

I'm using a UIWebView to load an HTML form in my iPhone app. The form has three submit buttons (and selecting "Go" on the iPhone keypad selects the first submit button). I'm assuming that I can set ...
11
votes
3answers
3k views

ASP.NET Canceling the Default Submit Button

I have an ASP.NET application where there's a few ASP.NET buttons and several plain HTML buttons. Anytime there's a textbox where a user hits enter, the ASP.NET button trys to submit the form. I ...
1
vote
1answer
2k views

How set panel Default Button that is inside a details view in asp.net?

<asp:panel ID="Panel1" runat="server"> <asp:DetailsView ID="DetailsView1" .... <asp:templatefield ShowHeader="False"> <insertitemtemplate> <asp:Button ID="btnAdd" ...
20
votes
9answers
20k views

Submit Login control button when I hit Enter

I have an ASP.NET web page with a Login control on it. When I hit Enter, the Login button doesn't fire; instead the page submits, doing nothing. The standard solution to this that I've found online ...
1
vote
2answers
752 views

DefaultButton in ASP.NET forms

What is the best solution of defaultButton and "Enter key pressed" for ASP.NET 2.0-3.5 forms?