All Questions
Tagged with jquery-ui-dialog asp.net-mvc-4
29 questions
1
vote
0
answers
114
views
The parameters dictionary contains a null entry for parameter 'isPendingOvrd' of non-nullable type 'System.Boolean' for method
There are similar type of question already asked. but none of them answers my problem. Cloud you please help me find the issue with my code.
I am calling a dialog popup for a view and a value is ...
0
votes
0
answers
2k
views
MVC 4 Actionlink to prompt Jquery Confirmation Dialog
I'm implementing an actionlink to perform delete. Initially was using javascript confirmation box. Due to customer request to change the confirmation box header text, i need to use jquery confirmation ...
0
votes
3
answers
9k
views
MVC 4 action link popup box confirmation for delete?
What's the best way to perform a confirmation pop out when click the actionlink to perform a delete? Currently when i press the delete action link, it will straight delete. Anyway to perform a pop out ...
-1
votes
1
answer
93
views
compact and expanded jQuery pop-up dialog
I'm totally new in MVC, I have info that I show in a jQuery pop-up dialog, but I need to compact and expand this dialog, as a small dialog has glance about my info, and a button when I click it ...
0
votes
1
answer
41
views
How to place dialog box code in some place and call it from all views?
So how to place jquery dialog box code in a specific file and call it from multiple views. Right now I am placing the dialog box code in all the views where ever I required to do so. I want to know is ...
1
vote
1
answer
1k
views
MVC dialog validation
Hi I am trying to validate one dropdown if was selected this way:
$('#dialog').dialog({
autoOpen: false,
width: 400,
resizable: false,
title: 'Add ...
0
votes
1
answer
323
views
Position jQuery dialog centered vertically with dynamic height contents
I'm using a jQuery dialog whose contents are variable in size. I populate the contents dynamically with the create method. When the dialog renders, the top-left corner of the dialog is positioned in ...
0
votes
1
answer
832
views
Loading a partial view in jQuery dialog MULTIPLE times
I'm using jQuery Dialog to create new Customers. The first time I open the dialog it calls the Controller Action method to create a new Customer model. Subsequent loads of the dialog DO NOT call the ...
0
votes
1
answer
107
views
Jquery Dialog Close not worked correctly
hello guys : i'm trying to make popup using Jquery inside Razor Mvc
4 , the popup done correctly but the problem when i press on close "x"
and press again to let popup appears again jquery ...
8
votes
4
answers
2k
views
programatically disable a button on a jquery ui dialog until ajax call complete?
I am using jquery ui dialog, and one of the button's causes an ajax call which takes a few seconds so I want to disable the button after I click it until the ajax call return (then i will enable it).
...
0
votes
0
answers
1k
views
Editing/Adding records in MVC Using Jquery Dialog does not show errors from server in the Dialog
Here I am doing a adding, editing with jquery dialog window with the same partial view, get and post methods for both operations.
this is how i m opening my dialog on the click (Below shown dialog is ...
1
vote
1
answer
4k
views
How to bind a WebGrid in a PartialView, which is in JQueryUI ModalPopup
I have this PartialView, which is loaded from the Layout of an MVC4 application.
On a button click in the main navigation menu the method SearchCustomers is called in an ajax post (shown below). ...
2
votes
1
answer
5k
views
MVC4, Render Partial View in Dialog Box with jQuery, How to refresh
I have a partial view that is popping up in a dialog with the code below. However, after the user saves the partial view the data does not refresh in that partial view when I click the ActionLink ...
0
votes
1
answer
2k
views
Return value from a partial view loaded on a jquery dialog
I have a partialview "selectUser". On this partial view a user can search for other users. The user id will be stored in a hidden field or as a var on my view. I need to use this partial view in ...
0
votes
1
answer
1k
views
jquery dialog fire open event twice
I have a problem with jquery-ui.
I bind a click event to open a dialog, but the dialog's open function fires twice.
The click event only fires once, is only the open function that opens two dialog
...