All Questions
Tagged with jquery-ui-dialog c#
56 questions
-1
votes
2
answers
455
views
JQuery Dialog Not Opening from C# Code Behind when autoOpen is False
I have an ASP.Net web application (with Master Page) and I've created a jQuery Dialog on one of the child pages. This dialog is used to display error messages to the operator if and when they happen ...
0
votes
1
answer
55
views
Dialog is always blank on first click
I am pulling data from WebAPI and trying to display in a table format in a dialog.
WebAPI is called on a btton click. On the first click, the dialog always is blank. From the second click onwards, i ...
1
vote
1
answer
352
views
How to use jQuery dialog() instead of confirm() from within C# code?
I am a Frontenddeveloper without further knowledge of C#, so please excuse my maybe stupid question. I am currently trying to use jQuery UI Dialog to replace the common JavaScript alert() and confirm()...
2
votes
2
answers
3k
views
Why my server side code is not firing on ASP.net Button click?
I don't understand why my server side is not executed.
Here is my code
ASP code
<div class="row" style="padding-top:20px;">
<div class="col-lg-4">
...
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 ...
2
votes
3
answers
1k
views
MVC 5 - jQueryUI Dialog View not displaying
I am working on a MVC website and for my delete function I decided to use jQuery UI Dialog to display a popup style dialog box for the user to confirm that they wish to delete the object. My problem ...
0
votes
1
answer
288
views
Postback is not working in JQuery dialog
Hello I have the following problem I tried and nothing , I can not recover my text box user control , the TexBox will use them in the EDIT POPUP
CONVENIO.ASPX
<%@ Page Language="C#" ...
0
votes
1
answer
918
views
How to pass value to jquery dialog?
How to get pass id value of button to jquery dialog on button click.
I don't want to pass value using query string.Is there any way that i can directly pass value using attributes or properties of ...
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
vote
3
answers
746
views
Passing ViewBag (has list of int type) to Controller
I am trying to pass list of int type to Controller on jquery load, but not successfull.
Here is my code:
function Addcov() {
var dt = '@ViewBag.dt';
@{
List<int> covtypes = new ...
0
votes
1
answer
98
views
OK Button Dialogbox isn't working
I use jQuery for dialogbox. it's strange when I tried to delete some element on it. when I click ok button. diaolog box won't redirect even close itself. nothing happen.
this is my first content ...
0
votes
2
answers
464
views
jquery ui dialog is not opening on button click when autoopen is set to false
i m using asp.net forms this page i m working on has a masterpage it works great when autoopen is false but when autofalse is true i dont know why it doesnt work. code is ..
$(document).ready(...
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
177
views
UpdatePanel inside Jquery dialog with form:first
I have this dialog with updatepanel inside, i'm trying to figure how to close it after SelectedIndexChanged fired
<script>
$("[id*=senderBtnPopup]").click(function () {
$("#...
-1
votes
1
answer
231
views
What is the exact length of $("#dialog").html(message)
I am using Jquery Dialog and the length of message is too large. I am using the following code
JavaScript
function ShowPopup(message) {
$(function () {
$("#dialog").html(message);
...