Tagged Questions

This tag is for questions about buttons, which are simple elements in graphical user interfaces that take mouse clicks as input.

learn more… | top users | synonyms (1)

217
votes
10answers
92k views

How to close/hide the Android Soft Keyboard?

I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking on the Button, I want to hide the virtual keyboard. I guess there should be a simple, one- or ...
105
votes
12answers
186k views

Trigger a button click with JavaScript on the Enter key in a text box

I have one text input and one button (see below). How can I use JavaScript to trigger the button's click event when the Enter key is pressed inside the text box? There is already a different submit ...
103
votes
5answers
27k views

<button> vs. <input type=“button” />. Which to use?

When looking at most sites (including SO), most of them use: <input type="button" /> instead of: <button></button> What are the main differences between the two, if any? Are ...
66
votes
7answers
65k views

Android: combining text & image on a Button or ImageButton

I'm trying to have an image (as the background) on a button and add dynamically, depending on what's happening during run-time, some text above/over the image. If I use ImageButton I don't even have ...
52
votes
4answers
80k views

Android: Override back button to act like home button

On pressing the back button, I'd like my application to go into the stopped state, rather than the destroyed state. In the Android docs it states: ...not all activities have the behavior that ...
30
votes
9answers
28k views

How to hide close button in wpf window?

I'm writing a modal dialog in wpf. How do I set a wpf window to not have a close button? I'd still like for its WindowState to have a normal title bar. I found ResizeMode, WindowState, and ...
25
votes
2answers
8k views

How can I build multiple submit buttons django form?

I have form with one input for email and two submit buttons to subscribe and unsubscribe from newsletter: <form action="" method="post"> {{ form_newsletter }} <input type="submit" ...
25
votes
5answers
22k views

Creating a custom button in Java

Is there a way to create a JButton with your own button graphic and not just with an image inside the button? If not, is there another way to create a custom button in java?
24
votes
5answers
80k views

Javascript Confirm popup Yes, No button instead of OK and Cancel

Javascript Confirm popup, I want to show Yes, No button instead of OK and Cancel. I have used this vbscript code: <script language="javascript"> function window.confirm(str) { ...
22
votes
2answers
14k views

How to disable an Android button?

I have created a layout that contains two buttons, Next and Previous. In between the buttons I'm generating some dynamic views. So when I first launch the application I want to disable the "Previous" ...
19
votes
11answers
3k views

What disadvantages are there to the <button> tag? (It seems there are quite a few problems with ie)

I started using a diagnostic css stylesheet, e.g. http://snipplr.com/view/6770/css-diagnostics--highlight-deprecated-html-with-css--more/ One of the suggested rules highlights input tags with the ...
18
votes
6answers
16k views

How do you completely remove the button border in wpf?

I'm trying to create a button that has an image in it and no border - just like the fire fox toolbar buttons before you hover over them and see the full button. I've tried setting the borderbrush to ...
18
votes
8answers
11k views

Button inside of anchor link works in Firefox but not in Internet Explorer?

Everything else in my site seems to be compatible with all browsers except for my links. They appear on the page, but they do not work. My code for the links are as follows- <td ...
16
votes
6answers
12k views

How to prevent buttons from submitting forms

In the following page, with Firefox the remove button submits the form, but the add button doesn't. How do I prevent the remove button from submitting the form? <html> <head> <script ...
15
votes
4answers
13k views

Disable back button in android

How to disable back button in android while logging out the application?
15
votes
5answers
22k views

How to Set Opacity (Alpha) for View in Android

I have a button as in the following: <Button android:text="Submit" android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> In my ...
15
votes
7answers
5k views

Apply CSS to jQuery Dialog Buttons

So I currently have a jQuery dialog with two buttons: Save and Close. I create the dialog using the code below: $dialogDiv.dialog({ autoOpen: false, modal: true, width: 600, resizable: false, ...
14
votes
6answers
24k views

Facebook “Like” button callback

I am interested in implementing the facebook "Like" button, but I would like to know what user is clicking on this button so I can get some useful information from this. From what I have read, ...
14
votes
2answers
2k views

Preferred method to reload page with JavaScript?

Hey Guys, which way to reload a current page (using a button) would you prefer? 1 <input type="button" value="Reload" onClick="history.go(0)"> 2 <input type="button" value="Reload" ...
14
votes
3answers
34k views

Android: ListView elements with multiple clickable buttons

I've a ListView where every element in the list contains a TextView and two different Buttons. Something like this: ListView -------------------- [Text] [Button 1][Button 2] -------------------- ...
14
votes
5answers
7k views

How to programmatically click a button in WPF?

Since there's no button.PerformClick() method in WPF, is there a way to click a wpf button programmatically?
13
votes
0answers
8k views

How to get multi line text on a button in Android? [closed]

Possible Duplicate: Is it possible to have multiple styles inside a TextView? I'm looking for a simple way in Android to add a text to a button that is displayed in 2 (or more) lines. E.g. ...
13
votes
3answers
16k views

How to wrap text of html button with fixed width

I just noticed that if you give a html button a fixed width, the text inside the button is never wrapped. I've tried it with word-wrap, but that cuts of the word even though there are spaces available ...
13
votes
3answers
7k views

How does the WPF Button.IsCancel property work?

The basic idea behind a Cancel button is to enable closing your window with an Escape Keypress. You can set the IsCancel property on the Cancel button to true, causing the Cancel button to ...
12
votes
3answers
2k views

How to handle button clicks using the xml onClick within Fragments

Pre-Honeycomb, each Activity was registered to handle button clicks via the onClick tag in a Layout's XML. android:onClick="myClickMethod" Within that method you can use view.getId() and a switch ...
12
votes
1answer
3k views

Android - Simulate Back Button

When i press a button in my app, I need to return to the last activity. Any ideas?
12
votes
3answers
6k views

Change UISearchBar/Keyboard Search Button Title

In the UISearchBar control, is the a way to change the Search key title for the keyboard to Done?
12
votes
3answers
35k views

WPF - How to create image button with template

I am trying to create a button which has 3 images: a Normal image, a Pressed image and a Disabled image (I will use these for creating up/down arrow buttons). I believe the correct approach would be ...
11
votes
3answers
4k views

How to reset default button style in Firefox 4 +

In firefox 3.6 you could use ::-moz-focus-inner {border:0;padding:0;margin:0;} to remove those default margins and paddings forms.css added. How can I reset this in Firefox 4? I've been searching for ...
11
votes
3answers
3k views

WPF TabControl with Add New Tab Button (+)

What is the proper way of adding a '+' button tab at the end of all the tab items in the tab strip of a tab control in WPF. It should work correctly with multiple tab header rows. It should be at ...
11
votes
7answers
12k views

Adding the Facebook Like Button in an iPhone App

Does anyone know how I would include a facbeook "like button" in an iphone app. I tried calling the iframe inside of a uiwebview but that doesn't work.
11
votes
9answers
7k views

jQuery dialog button variable

Can anyone tell me how can i use a varaible for button text in jQuery UI dialogs. I want to make a dynamic button name.
11
votes
9answers
774 views

Is it ok not to have a button for a search box?

I was wondering if it was ever ok not to have a submit button (Ok, Go or Search for example) near a search box in Web pages. I know that hitting enter is much faster and that it will perform the ...
11
votes
4answers
14k views

Styling an input type=“file” button

How to style the input type="file" button.
11
votes
3answers
2k views

How to make a button appear as if it is pressed?

Using VS2008, C#, .Net 2 and Winforms how can I make a regular Button look "pressed"? Imagine this button is an on/off switch. ToolStripButton has the Checked property, but the regular Button does ...
10
votes
3answers
125 views

Restore c# winform backcolor

I have a button on a winform which I change the background color to Color.Yellow when it's clicked. When it's clicked again I want to restore it to the original default appearance. The default ...
10
votes
5answers
326 views

Can I store an Object inside a button in C#

I am creating Buttons dynamically in my code, is there a way I can store a custom object in my button so I can use it when I press this button ?
10
votes
3answers
4k views

How do I add a custom icon to a standard jQuery UI theme?

It is easy to use one of the icons available from the standard the icon set: $("#myButton").button({icons: {primary: "ui-icon-locked"}}); But what if I want to add one of my own icons that is not ...
10
votes
2answers
11k views

Android - play sound on button click - Null pointer exception

I am trying to play a sound file on the click of a button. The sound is just 1 sec long. It plays well the first few times I click the button, but after a while it gives a NullPointerException. Here's ...
10
votes
13answers
621 views

Gorgeous web buttons with proper behavior, can it be done?

For my application, I wanted to style the submit buttons nicely. With normal CSS, I managed to get it to look good in Firefox, and horrible in IE. Then I saw this blog entry: ...
10
votes
1answer
6k views

android start user defined activity on search button pressed @ handset

I am using following code to start activity when user pressing search button on the handset @Override public boolean onKeyUp(int keyCode, KeyEvent event) { if(keyCode == KeyEvent.KEYCODE_SEARCH){ ...
10
votes
3answers
8k views

WPF - Create buttons with up and down arrows using standard buttons

I want to create some up and down buttons using the standard button background but with black arrows. What is the best way to accomplish this with WPF?? Malcolm
9
votes
3answers
118 views

Purpose of HTML button?

What was the intended purpose of the HTML <input type="button"> element, taking into account that Javascript appeared after HTML (hence making me doubt that JS was the intended purpose)?
9
votes
2answers
289 views

Programming In C + Win API: How To Get Windows 7 Look For Controls?

I am programming strictly in C and WinAPI, no C++ or C#. I am a beginner and just learning to draw controls etc. The thing is that when I create Windows or other controls like Command Buttons, they ...
9
votes
1answer
2k views

Remove extra button spacing/padding in Firefox

See this code example: http://jsfiddle.net/Z2BMK/ Chrome/IE8 look like this Firefox looks like this My CSS is button { padding:0; background:#080; color:white; border:solid 2px; ...
9
votes
2answers
784 views

GitHub source dynamic navigation

I was browsing thought GitHub today and noticed that the individual repository navigation doesn't use hash-bangs in the URL /#! or /# and the back button still works. How do you think they are ...
9
votes
2answers
5k views

Changing color of jQuery UI Buttons

Is there an easy way to change the color of a jQuery UI Button? Modifying the css is discouraged from the documentation and doing so anyway is tricky. They say, "We recommend using the ThemeRoller ...
9
votes
7answers
2k views

Can I make a <button> not submit a form?

I've got a form, with 2 buttons <a href="index.html"><button>Cancel changes</button></a> <button type="submit">Submit</button> I use jQuery UI's button on them ...
9
votes
2answers
7k views

Create a jQueryUI 1.8 Button menu

Now that jQueryUI 1.8 is out, I was browsing through the updates and came across the new Button widget, and in particular one of the demos with the SplitButton with a dropdown. This demo seems to ...
9
votes
5answers
5k views

WPF SplitButton?

I've just spent a very frustrating afternoon trolling Google looking for a commercial-grade WPF SplitButton control that will work in a ToolBar. A SplitButton is one where you can click on the main ...

1 2 3 4 5 101