Dialog is not a function
-
Hi. I am working on displaying dialog using jquery on button click in asp.net. When i click on button. model popup is not displaying.. Is is saying dialog is not a fuinction. Can anyone please help me out Error is showing on this line
$("#Planmaster-Add").dialog({
Thank you
-
Hi. I am working on displaying dialog using jquery on button click in asp.net. When i click on button. model popup is not displaying.. Is is saying dialog is not a fuinction. Can anyone please help me out Error is showing on this line
$("#Planmaster-Add").dialog({
Thank you
Hello, First of all add required JS and CSS of JQuery after that do the Following code.
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>function OpenDialog() {
$("#dialog-open").dialog({
modal: true,
buttons: {
Ok: function () {
$(this).dialog("close");
}
}
});
}Hello Mr....I am working on displaying dialog using jquery on button click in asp.net. Currently using **36% of your storage space**. <input type="button" id="btnDialog" onclick="OpenDialog();"/>
-
Hello, First of all add required JS and CSS of JQuery after that do the Following code.
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>function OpenDialog() {
$("#dialog-open").dialog({
modal: true,
buttons: {
Ok: function () {
$(this).dialog("close");
}
}
});
}Hello Mr....I am working on displaying dialog using jquery on button click in asp.net. Currently using **36% of your storage space**. <input type="button" id="btnDialog" onclick="OpenDialog();"/>
Thanks .. I got it :)
-
Thanks .. I got it :)
Now, My requirement is load another aspx page into a jquery modal popup. Actually I have a dash board. In that , I have a ADD new button for employee. Which is click on that button another employee aspx form should load into a modal popup. Where I can add the employee details in that modal pop up. Could you please help me in this. I will be very thank full. Thanks
-
Thanks .. I got it :)
Hello, Its Working then Please give vote as Upvote. Thank You.
-
Now, My requirement is load another aspx page into a jquery modal popup. Actually I have a dash board. In that , I have a ADD new button for employee. Which is click on that button another employee aspx form should load into a modal popup. Where I can add the employee details in that modal pop up. Could you please help me in this. I will be very thank full. Thanks
Hello Syed Rehman, You can't do this because of Jquery Modal Popup is working on same Page and You can't Load the other Page inside Jquery Modal Popup I would like to suggest to use windows Size for Other Page that Look Like Popup Just check the Example.
// set this on OtherPage inside script.
<script type="text/javascript">
var size = [400, 300];$(window).resize(function () { window.resizeTo(size\[0\], size\[1\]); });
</script>
//Now Set the Link on first page.
Open Other Page