Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
834 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 ...
5
votes
5answers
3k 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 ...
4
votes
1answer
751 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 ...
3
votes
2answers
226 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 ...
3
votes
1answer
731 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
3answers
394 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 ...
2
votes
1answer
1k 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
2k views

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

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 ...
2
votes
2answers
1k 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 ...
2
votes
3answers
684 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 ...
1
vote
0answers
30 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 ...
1
vote
2answers
53 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 ...
1
vote
1answer
402 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: ...
1
vote
1answer
163 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 ...
1
vote
2answers
465 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 ...
1
vote
1answer
560 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
3answers
53 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
0answers
90 views

ASP.NET adding defaultbutton to form makes ScriptResource.axd fail to load

I fixed IE's 'feature' of clicking the first button it finds when a user hits enter by adding the defaultbutton="DoNothing" to my form control. It works great. However, when I cause a postback from ...
0
votes
2answers
106 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
147 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
89 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" ...
0
votes
2answers
74 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
166 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 ...
0
votes
0answers
122 views

Set DefaultButton of panel dynamic in listview databound event to button of usercontrol

I've been looking at this for a while, but without success. Not sure if there is a solution to this but I thought I'd ask it here. Just in case. My scenario: I have a ListView (databound in the ...
0
votes
1answer
93 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 ...
0
votes
2answers
672 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: ...
0
votes
0answers
70 views

Overriding form default button via tabbing

I have a page where I have one button of three set as default (say Submit). The problem arises when a user tabs to another button, such as Cancel. This button is not fired when Enter is pressed, ...
0
votes
1answer
244 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 ...
0
votes
2answers
606 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 ...
0
votes
4answers
760 views

defaultbutton in ASPX content page gives The DefaultButton of 'pnlHolder' must be the ID of a control of type IButtonControl

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 ...
0
votes
1answer
89 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 ...
0
votes
1answer
476 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) ...
0
votes
2answers
733 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 ...
0
votes
5answers
957 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
806 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 ...
0
votes
1answer
1k 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" ...
0
votes
4answers
595 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?