This tag is for questions about buttons, which are simple elements in graphical user interfaces that take mouse clicks as input.
0
votes
1answer
18 views
Trying to add a delete button to php website
Im new to php and trying to add a delete button to remove an object (job) from a list,
I want the delete button to appear beside each of the individual objects (jobs) and once clicked this job gets ...
1
vote
2answers
62 views
How can I change background colour of a button on key press?
I've been working on JavaScript on-screen keyboard kind of thing, just for experimentation. I wanted to see if I could detect which key had been pressed, and make the corresponding on-screen keyboard ...
1
vote
2answers
18 views
Trying to get or pass Button in/to Custom SurfaceView from the same Layout
I am creating a small game I have an activity:
GameActivity.java:
public class GameActivity extends Activity {
public static Button btnPause;
@Override
protected void onCreate(Bundle ...
0
votes
1answer
21 views
JSF litener triggers buttons onclick
<h:form>
<h:selectOneMenu value="#{productBean.productName}">
<f:selectItem itemValue="" itemLabel="..." />
<f:selectItems ...
0
votes
2answers
4k views
Uncaught TypeError: object is not a function, button inside form
Good Morning in my time zone.
I have the following snippet of javascript code in my jsp page.
<form name="programarRutasForm" method="post" action="/SGT_Galp_web/programarRutas.do">
...
0
votes
1answer
51 views
Automatically press a button or accept a dialog in c#
Is there a way to automatically click on "OK" button of
"MessageBox.Show("my message");
"?
I don't want to remove the messagebox because it let's me to capture a screenshot (for more ...
0
votes
1answer
30 views
remove button from a window
Using c++, I have created a window with a "WNDCLASS" structure. I have then used "CreateWindow" again with the system class "button" and set the parent handle to the handle of the window already ...
0
votes
0answers
9 views
Changing button title with alertview input
I'm new to xcode and I'm trying to make a project which makes you change the title of a UIButton after pressing it by the input of a "plaintextinput" alertview that will pop-up after the button was ...
-1
votes
1answer
17 views
Adding handler to button presses
I have many GUI forms with many buttons on each GUI form. I am wanting to detect when a user clicks on any of these buttons.
My question is this: Should I add code individually to each button, or can ...
0
votes
1answer
7 views
Netsuite add create new purchase order button in case form
New to netsuite and I'm trying to use the case system like a work order system for our property management company. I want to be able to create a purchase order from the case record and have it ...
0
votes
1answer
25 views
Xcode: Make UIButton inactive until WebView is completely loaded?
I have an App here, which loads a ModalView (WebView) which contains a Camera button. The problem is, when the Webpage has not been loaded completely, and I press the Camera button and dismiss it, ...
1
vote
3answers
55 views
How can I make a piece of code loop while a Button is pressed and stop it once the Button is no longer Pressed?
I am using the android developer tools in Eclipse, programming in Java, and I need to make an object move across the screen as long as a button is pressed. I've been doing research for hours, and I ...
2
votes
2answers
39 views
Add a button to View
I'm drawing a graph then add some button/label/textbox for input data. But the button on main layout is't show up. how to add button to a View (Because i draw graph using canvas on a View)
here is ...
0
votes
1answer
20 views
rails database item are not listed in my index page
in my line item index page I write the code to list rows but it is not listed also there is no error
<% @line_items.each do |line_item| %>
<tr>
<td><%= line_item.phone_id ...
1
vote
3answers
49 views
Java calculator add numbers to textfield
I am making a calculator to test my skills in java. How can make the numbers to show up in the jTextfield until i pressed one button to calculate the numbers; i want every numbers to show up in the ...