I use a modal of foundation(http://foundation.zurb.com/docs/components/reveal.html)
now I have a button inside the modal and I want to fire event when user press on the button.
but the event don't fire..
someone can help me?!
I find the soulation:
define LinkButton insead Button:
Related
Popup dialog
My purpose of closing this popup dialog is when some filters in my page was changed this popup dialog is no longer relevant so I wanted to close it under my List item SelectedIndexChanged event but I could find any solution yet. Although user can just click the close button but It would be better if it can be done in code.
Glad if you can help. Thanks
Aspx page contains a panel having a default button called btnFilter. Panel having another button btnReset. When my focus is inside panel & I press enter its fires btnFilter click event that is OK. But first I put focus on reset button & then press enter it fires btnFilter click event instead of firing btnReset click event.
Is there any solution for this?
I have a ASP.NET page where a modal popup extender is shown when we click on a link button...There is a submit button in the Modalpopup extender which inserts the data into a DB table.... the proble is there are field validators for the textboxes in the modalpopup extender...for which validation is required...
After entering the values, in the textboxes the submit is working for the second click, but not on the first click...
Can u please help me over.
Thanks in advance
Set the ValidationGroup for the validators and for the Submit button in the popup to the same value, "PopupValidationGroup" or something like that.
I have a base page in which i have a listbox.
The base page is also having a modal popup extender.
When the modal popup extender appears over listbox, the listbox appears through modal poup.
That is, only for listbox, the popup extender becomes transparent.
What shud I do for this?
My understanding is that, since listboxes/dropdowns are windows controls, they will always appear over the modal popup.
I haven't tested this, but your best bet may be to write some code in the button click handler that launches the popup and either diable or hide the offending control.
Please note this is a popup and NOT modal popup. The users do not want a modal popup.
Is it a good idea to use an Ajax Popup Control extender in the following circumstances;
I want to populate a textbox. When the user clicks on it, he sees a popup window.
In the popup window you can enter value of the field, or make a selection from a drop down list. When you have decided, you can either click on a submit button to commit your changes, or click on a cancel button to ignore your changes.
By experimenting I have found how to do this, apart from the cancel button.
How do I do this? Or should I try something else?
You might want to check out this jquery plugin
http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/
http://developer.yahoo.com/yui/examples/container/dialog-quickstart.html has a good example of what you are looking for