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-