Questions tagged [confirmbutton]

9 questions
18
votes
3 answers

JavaScript confirm box with custom buttons

Can I write a custom confirm box in JavaScript that, instead of the default OK and CANCEL button, shows a SAVE and DELETE button?
Hector Barbossa
  • 5,506
  • 13
  • 48
  • 70
3
votes
1 answer

How do I disable my ASP.NET AJAX ConfirmButtonExtender when page validation fails?

I've got a submit button using Microsoft's ConfirmButton extender to ask "Are you sure?". However it fires regardless of whether or not the page passes client-side validation.
Zack Peterson
  • 56,055
  • 78
  • 209
  • 280
2
votes
5 answers

Yes/No buttons in Confirm box in Sencha touch

I have put a confirm box on the logout option of my application. Code for the same is as follows: var abc = Ext.Msg.confirm('Confirm logout', 'Are you sure you want to logout?', function(e) { if(e == 'yes') { // logout code } …
Jammy
  • 35
  • 1
  • 2
  • 9
2
votes
3 answers

how to get control inside ASP DetailsView through javasscript?

could anybody describe me how to find a control inside a ASP DetailsView using javascript? my requirement is to display a confirm box on a button's client click that checkbox is checked or not. Here is the code working without DetailsView-
Vaibhav Saran
  • 12,848
  • 3
  • 65
  • 75
1
vote
2 answers

confirmation box with just yes button

I have a form and when i click submit i want to display a box saying thank you and some information. Now I just want the box to show OK. So i really dont need a confirmation box but something similar with just an OK button. Can i modify my existing…
Micheal
  • 2,272
  • 10
  • 49
  • 93
0
votes
2 answers

terminating the php form action on click of confirmation box

We alert user using this javascript, now i want to add this functionality to my html form, which sends the data using the post method to my php form processing page. Now what i want is to terminate the action if the user presses cancel button, it…
Django Anonymous
  • 2,987
  • 16
  • 58
  • 106
0
votes
2 answers

popup confirm window with scrollbars

i have a button where i need the a confirm popup. this is like an agreement for the user to click Yes or NO. there is data in the white panel and two buttons below. the data is huge so i will be requiring scroll bars in the panel where the data…
user175084
  • 4,550
  • 28
  • 114
  • 169
0
votes
1 answer

Populate a confirm/pop up box with data from the input field and allow user to edit in html and jquery

I am trying to implement a button which allows user to edit their data in a confirm box. Once the button is clicked the user gets a confirmation box which shows his previously entered data. If the users wants to confirm then they click on the save…
Prakhar Gyawali
  • 527
  • 4
  • 18
0
votes
1 answer

User Confirmation in MVP Pattern with Passive View

How would you handle calling a user confirmation dialog before continuing with a task in a web-based MVP pattern implementation? It'll have to do a postback in between and the confirmation would go out of the scope of the presenter function that…
Jonn
  • 4,599
  • 9
  • 48
  • 68