Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
21k views

How to make a button redirect to another page using jQuery or just Javascript

I am making a prototype and I want the search button to link to a sample search results page. How do I make a button redirect to another page when it is clicked using jQuery.
4
votes
1answer
406 views

How to capture button click event of webpage (opened inside WebBrowser Control) in WPF form?

Consider a scenario where I have a WebBrowser Control in WPF application. A web page is loaded inside WebBrowser Control. The web page contains a button. The web page is of ASP.NET application. I ...
3
votes
3answers
6k views

Button Onclick Listener in included layouts

I come to you on bended knee, question in hand. I am relatively new to Android, so pardon any sacrilegious things I might say. Intro: I have several layouts in the app, that all have to include a ...
2
votes
1answer
119 views

OnClick of a Button display the next page

I am a newbie to Blackberry,could anyone please let me know how to go to the next page on click of a Button?
2
votes
3answers
318 views

How to launch another aspx web page upon button click?

I have an asp.net application, where the user would click a button and launch another page (within the same application). The issue I am facing is that the original page and the newly launched page ...
2
votes
2answers
557 views

ASP.net c# button click

Given: <button runat="server" id="btnNext">Next &gt;</button> I need in my code behind the have the onclick event, but the onclick event in this case refers to clientonclick, I have ...
2
votes
1answer
383 views

onclick print , not printing form's backgroup image

I wrote code that simply generates a table gridview. The last column provides a print button option for each record. if the user clicks the print button a pop up window is displayed with background ...
2
votes
5answers
555 views

How to have a method pause and wait for input with Android?

Basically I have created a Blackjack app that uses several methods that get called and pass a long the information that is needed (about cards and actions). I have 2 buttons displayed on screen that ...
2
votes
4answers
746 views

same function for two buttons in jQuery

I have two buttons: btnAdd and btnUpdate. I have written a jquery function for button btnUpdate to validate some fields in the web page like: $(function() { $('#<%=btnUpdate.ClientID ...
2
votes
1answer
1k views

button click event call on page load

hi expert i am new in asp.net development, i have problem when page load fired a click event of button is automatically fired will you please tell me why it is happening and what is the solutions for ...
2
votes
2answers
2k views

OnClick event in WinForms DataGridView

I am using DataGridView in WinForms and by this piece of code I am assigning it columns and values dataGrid.DataSource = sourceObject; only by this line all the columns and values into the grid. ...
2
votes
4answers
932 views

ASP.NET - Passing arguments to the server on button click

I have a ASP.NET web page which contains a table of check boxes and a button. I need to find the IDs of all the check boxes which are checked when the button click happens. Once the list of IDs are ...
1
vote
1answer
32 views

Not able to call User control button click event when loadaed dynamically into another page

I am writing a project that load the list of products and then provide an option to delete them. ASP.NET C# so have created a user control for this purpose. The user control has product image, name ...
1
vote
3answers
76 views

Android Button Click Not Working

Can someone tell me why the code from "Starting new code" onwards does not work? The onClick method in the click event listeners does not get called and even the text change for the label does not ...
1
vote
4answers
38 views

Why when initiating $.click() several times, and if the link is clicked once, it captures it more than once?

I have something like: function init(){ $('.btn').click(function(){ //do something; } } And when new content is added via ajax, I'm calling init(), so that click event applies to new ...
1
vote
3answers
218 views

multiple button click in asp.net MVC 3

I am having multiple dynamic buttons on my asp.net mvc 3 page. what is the best way to handle button click in asp.net mvc 3? there is no event handling in asp.net, so what is the best practice to ...
1
vote
5answers
98 views

.click() not working. Jquery

In my login.aspx I am trying to perform simple client side validation (check Username and password fields are empty or not) on the click of the button. But the .click() in the jquery is not firing. ...
1
vote
2answers
365 views

save button click event getting fired up on refreshing the page once done with binding the data to a gridview through save button in asp.net

I am working on a web application using asp.net and c#.net. am binding the data to the gridview through the textboxes in the same page and I wrote the binding method in my "Save" button click event. ...
1
vote
3answers
367 views

open a web page on button click in form

I want show a web page (google) when i click on the button in form(winform).... I have tried the below code but it does not work for me..... public partial class Form1 : Form { bool mHooked; ...
1
vote
3answers
215 views

Show only one Toast in click event?

I want to notify a user that he has reached a minimum value. The value is set via the button click. If he continues to click on a button, when a minimum value has been reached, Toasts start appearing ...
1
vote
6answers
500 views

Android: How to pass data of one activity with the button click in another activity

I have two classes like firstactivity.java and secondactivity.java. In firstactivity I have a button(submit) when I click the button(submit) I want to pass the data of secondactivity.java to server. ...
1
vote
4answers
527 views

Go to different url on clicking button

i need to create html code, in which if user selects an item from drop down list and click button then it will go to respective link. <select name="myList"> <option value="Google" ...
1
vote
7answers
311 views

javascript linking onclick to a .js to a file

OK, so I created a .js file, and then included <script type="text/javascript" src="yourexternalfile.js"></script> on my pages. Now, could anyone tell me how do I call the function in ...
1
vote
3answers
1k views

How do we display a progress bar in C# for a button click event in WebForm?

I have a button click event which does a lengthy function and takes time. So i want to display a progress bar. Can you let me know how can I do it. I am very new to .NEt .. any help appreciated ...
1
vote
3answers
124 views

button_click upon pressing Return in TextBox - ASP.NET

I've got an ASP WebForm with 2 Textboxes and 3 Buttons and I want a specific button_click event to be fired whenever I press return whilst in a TextBox - how would I achieve this? I tried using the ...
1
vote
1answer
329 views

Button Click to stop a test

I have a Test Engine that executes multiple tests, until all tests have been executed. Each test object has an Execute and Resume method. These methods return a status: Waiting for reply from ...
1
vote
1answer
425 views

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine. I have a ASP.NET Button I've placed inside a SharePoint DataView's ...
1
vote
3answers
75 views

Submitting forms and using the value (JavaScript)

How do you use a value "submitted" by a form in javascript? Facts: It is a PHP document I'm using JavaScript because I need some timing factors I don't think I can get from serverside-scripts :) ...
1
vote
1answer
92 views

Removing default onclick or onItemClick color animation

Hi When I click on some button or I click on the a element in grid or list view, a default orange color appears. I don't want that color to come when I click on it. Please tell me how can I do this. ...
1
vote
1answer
2k views

Accessing Repeater DataItem in Button_OnClick event

I have a repeater control bound to a collection of objects. When I fire off the button_onclick event, I need to have access to the dataitem to get the object properties. Here is what I have and my ...
1
vote
3answers
785 views

Does Selenium or WatiN have property like QTP's Setting.WebPackage(“ReplayType”) = 2?

There are some buttons and menus in the application I am testing that require actual clicks to send all the information through and FireEvent style clicking does not seem to cut it. Both TestPartner ...
0
votes
3answers
25 views

How to stop to reload page when click the button?

I have asp.net website which include some calculation on button. When I press the button, my calculation works fine but, firstly page is refreshing and then the calculation looks on the label. I want ...
0
votes
1answer
31 views

Setting onclick button color while waiting

I have an onclick listener for a button. Is there any way when I click the button, make the text change color until my new activity is brought up?
0
votes
2answers
25 views

capture button click to customize navigation

Depending on the clicked button out of 3 button, different data gets populated in listView. I've used this onListItemClick snippet //ltable refers to list String item = ...
0
votes
1answer
71 views

Button Click Event does not fire

I have the following ASP-Markup: <asp:Button runat="server" ID="btnSubmit" meta:resourcekey="btnSubmit" CssClass="submit" OnClick="btnSubmit_Click" /> And the following Code-Behind: ...
0
votes
7answers
157 views

How to disable a button after 1st click

I have the following onclick event for a button. once this event is ftonired i want to disable the button. Can anyone help me to understand how to do it? Here is the code i execute on buttonclick ...
0
votes
1answer
58 views

android play sound form sd-card after button click

I have onClickListener and I need to add sound to it. When I press button the sound must start. It's on sd-card. I try to use MediaPlayer but it's need to put resourse id into constructor. ...
0
votes
1answer
38 views

android programming how to handle onclick() events when the program is running a different thread which is running as a server?

I have a thread running the server sends a data to a client and receives a data from the client. the server/client program am running is a modifed version of code found at Connecting 2 Emulator ...
0
votes
0answers
57 views

Sending MMS in android?

I'm working in a project which needs sending MMS on a button click.. There are a lot of images used and the recipient number is also known. Can I hard code these two things so that no preview of MMS ...
0
votes
0answers
19 views

Javascript rss Feed change the feed on button click

I am creating a rss feed application using javascript generated from http://feed2js.org/. feed2js is a website that generates the javascript for a specified url that you enter, and allows you to ...
0
votes
2answers
52 views

C# A ButtonClick action to replace all others?

I was wondering how I could set an EventHandler for a button click so that it would replace all other handlers for this objets. Ideally it would be something of the likes of: button1.Click = ...
0
votes
0answers
51 views

Button click issue in drupal 7.x ?

I am new in drupal.actually i am working on one project. i have to execute one funtion on button click.I wrote the code but i am getting some warning. Code is: ...
0
votes
3answers
74 views

changing the href or removing the onclick for a button

<a href="javascript:__doPostBack('btnContinuePhone','')" class="button-hpo blue-button-23" id="btnContinuePhone" onclick="javascript:return ...
0
votes
2answers
145 views

Android - Add item to custom listview on button click

I currently have a custom listview where each item on the list contains two rows of text. What I would like to do is each time a user clicks on the button, it creates a new item on the list with the ...
0
votes
2answers
76 views

clicking a HTML href with enter key without javascript

hi i have a div wrapped in image tag as below: <div id="SubmitButtonDIV" style="position: relative; left: 70px; top: 15px"><img id="btnDOB" alt="" src="PsychOImages/calculate-white.jpg" ...
0
votes
2answers
190 views

Button click and ListView click

I have a ListView. on click of a list item I start a Activity. Now I have added a Button on that ListView and onclick of a button I want to start a another activity. After adding a Button, I can click ...
0
votes
1answer
89 views

Onclick Image-Selection

I'd like to create a Button, on which i can tip, afterwards, there should show up a picture selection which should be scrollable (probably its a grindview idk). It's like the thing in whatsapp on the ...
0
votes
3answers
77 views

Need to save variables for my onClick

for ( int i = 0; i < responses.size(); i++ ) { Button btn = new Button( this ); btn.setText( guideStep.getResponse( i ).getTitle() ); btn.setOnClickListener(new ...
0
votes
2answers
104 views

Finding the click event of DGV button column and transferring to another form

I have a datagrid view with four columns: productid productname productprice buy (this is button column ) Is it possible to find the click event of button column? I mean, if I click on the row 1 ...
0
votes
1answer
128 views

open js file in html button onclick

I am currently working in HTML and JavaScript. I am Beginner. I want to open a javascript file in the onclick event of the button which is in my html file. is there any method to do this. kindly help ...

1 2