how to change the default labels of jquery alert box - javascript

I want to change default button labels "ok" and "cancel" of jquery alert box to "delete" and "trash" can we do that without the use of any custom modal or boxes because i have seen some example around like "stay" and "leave" etc. Please help

You cannot override the appearance of the alert box. You can, however, create your own using jQuery's Dialog.

Related

Using Blaze.render inside of a bootbox dialog - getting weird bug

So I have a bootbox dialog that I need to have a button on that will create another bootbox dialog box. My issue is though the second bootbox dialog has a lot of javascript code so I was trying to use
Blaze.render Template.templateName, $('#dialogNode')[0]
to create the second dialog box, but this causes the second dialog box to have the same styling width as the first and disabling all buttons to be pressed (must hit esc twice to close both dialogs at the same time. If I try to render the second dialog box by following the Custom HTML example on http://bootboxjs.com/examples.html there is no issue, but I need to be able to use Blaze.render to use a certain template with its js code. Any thoughts about the error I am having? Thank you
Found my issue everyone! Both of my dialog boxes were called with the same id #dialogNode, so I just changed one of them!

Confirmbox with custom button text

when we use confirm prompt box , it always display "ok" and "cancel" buttons
I want to change the label text for the ok and cancel buttons as Agree and Not Agree
please do suggest any solution
What i can suggest you is apply or override CSS; which i think is not at all a better solution.
Next you can go with following link posted below.
JavaScript confirm box with custom buttons.
Hope this helps.

Text box with a clear button inside in asp.net

I have a lot on my site text boxes whose content is a date
So I will not have to check correctness did it read-only
Until now next to each text box was two buttons, one to add date opened popup calendar, second to delete the date (values ​​not required)
Now I wanted to go to ajax calendarextender that the buttons were just ugly
My problem is that this control is not have delete button, and I do want to allow the user to deleted but not cancel the properties read-only to text box And I do not want to leave the ugly button.
My question:
If calendarextender ajax or something similar with a delete button from the popup
Alternatively if you have the option text box with a delete button inside( as text boxes IE10)
With the help of css and java-script you can easily do it.
Here is an example How do I put a clear button inside my HTML text input box like the iPhone does?
Instead of all that work to make it read-only and avoid validation, why not combine a FilteredTextBoxExtender with the CalendarExtender. Use the filter to block all non-numeric characters. I still think it's better to do the validation. It's as simple as DateTime.TryParse(), or you could do it client-side with the built-in FieldValidators.

How to display jquery popup window with a text area and several radio buttons?

I need to display a popup window which will ask user to select one from given radio button options(let's say 3 radio button options). Or type something in the given text area(only one can be done)
Once user clicked OK button in the popup window, I want to pass selected radio button value or text in the text area to a variable.
Can anyone please tell me how to do this?
I would suggest a lightbox approach.
You could use a lightbox or jquery tools overlay to create the form, and then put the variable back in a callback.

Looking for particular alert box behavior

I'm interested in alert boxes such as,
http://www.visual-blast.com/javascript/nice-alert-box-with-jquery-impromptu/
and
http://woork.blogspot.com/2008/08/design-stunning-alert-box-using.html
but with a different functionality, the user should be able to interact with the page even with the alert box present, so it needs to be movable and not obscure the underlying page, as in this example,
http://www.open-lab.com/mb.ideas/index.html
Alert box should be generated automatically on page view plus the title and message of the alert box should change with each page refresh from expandable library.
Is there anything out there like this?
Thanks
Sounds like the jQuery UI dialog widget might do what you need?
http://jqueryui.com/demos/dialog/
Here is an example with mootools. You easily can extend any element on the page to be draggable. You may use this plugin as a sample of alerts and you'll just need to remove some functionality and add make it draggable.
There are few custom dialogs in moo.rd. One of them is the Custom.Alert:
http://www.moord.it/examples/custom_alert

Categories