Tagged Questions
2
votes
1answer
106 views
MVC3 & JQuery Dialog won't Submit Form when Opening the Dialog
I have a dialog that is used for searching in an MVC3 application. The Search button on the dialog posts to an MVC3 Controller action that returns JSON of search results which then get parsed into an ...
1
vote
1answer
520 views
Need to load jQuery UI Tabs dynamic content links through Ajax
I have this jQuery UI Tabs model with only 2 tabs and I need the content to load through Ajax. The problem is that these tabs are loaded inside a jQuery UI Dialog and mid is dynamic. I mean, the ...
0
votes
1answer
51 views
Jquery post() - unable to append returning data
I am using the jquery post() for the first time and I can't simply append the returned data. In my case the data is simply a table row from the page which my action calls. I have this
...
0
votes
1answer
52 views
Hiding/Reshowing jQuery Dialogues
I'm trying to open a jQuery dialog using AJAX. The content of the dialog is loaded from a querystring and contains server controls inside a form tag.
I have a GridView where a link in each row spawns ...
0
votes
2answers
205 views
How to display a dialog when user clicks on a <img>?
Here's what I've made so far:
// somewhere in the page code...
<img alt="" src="images/frame.png" onclick="uploadImage()" />
I have created a jQuery script:
// in the head section of the ...
0
votes
1answer
177 views
How can I close the jquery ui dialog from inside the dialog code?
I use several jquery ui dialogs in my application to collect input from users and for CRUD operations. When in a page I need a dialog I do the following steps:
First I define the minimum markup and ...
0
votes
2answers
461 views
Authorization and Jquery dialog problem
I have a little problem with a Jquery dialog for an action that requires a role.
In my example, the user can click on a delete button and must confirm the action.
In my controller, the Delete action ...
0
votes
2answers
3k views
jQuery UI Dialog - Ajax in PHP
I have an HTML form in a PHP file like the attached snippet:
When I hit the "Save Details" button, I want the page to load a jQuery UI modal dialog. That dialog will execute a controller action ...