- Sticky jquery-ui dialog does not let mouse pointer go
- $("#Applon").dialog({
- autoOpen: false,
- height: 370,
- width: 710,
- modal: true,
- buttons: {
- //'Create an account': function() { },
- Close: function() {
- $(this).dialog('close');
- //$('input:visible:enabled:first').focus();
- }
- },
- close: function() {
- }
- });
- jQuery('#jgrid2').jqGrid({
- autowidth: true,
- altRows: true,
- altclass: 'grdAltRwClr',
- datatype: 'local',
- forceFit: true,
- gridview: true,
- mtype: 'post',
- height: 190,
- //width: 350,
- rowNum: 0,
- postData: { p_hdrid: function() { return $('#p_hdrid').val(); } },
- url: window.rootPath + 'Invoice/JGridDtlData',
- beforeSelectRow: function() { return false; },
- gridComplete: function() {
- GridComplete2();
- },
- colModel: [
- { name: 'act', label: 'View', resizable: false, search: false, sortable: false, title: false, width: 8, index: 'act' }
- , { name: 'p_slabid', label: 'Slab ID', width: 15, index: 'p_slabid' }
- , { name: 'p_fslab', label: 'From', width: 15, index: 'p_fslab', sortable: false }
- , { name: 'p_tslab', label: 'Upto', width: 15, index: 'p_tslab', sortable: false }
- , { name: 'p_amt', label: 'Amount', width: 15, index: 'p_amt', sortable: false }
- ]
- });
- <div id="Applon" title="Edit Slab Details" style="border-style: 1px; width: 680px; height:370px; background-color: #00CC99; z-index: 999; display: block; padding-left: 10px;">
- <div class="content">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <form action="" id="frmDtl">
- <table cellpadding="0" cellspacing="0">
- ....controls go here
- </table>
- </form>
- </td>
- </tr>
- </table>
- </div>
- <div class="content" style="width: 690px">
- <table id="jgrid2">
- </table>
- <div id="pager2">
- </div>
- </div>
- </div>
- element.style {
- -moz-user-select: none;
- }
- .ui-helper-clearfix:after {
- clear: both;
- content: ".";
- display: block;
- height: 0;
- visibility: hidden;
- }
- jquery...s?v=5.3 (line 12)
- .ui-draggable .ui-dialog-titlebar {
- cursor: move;
- }
- jquery...s?v=5.3 (line 417)
- .ui-dialog .ui-dialog-titlebar {
- font-size: 1.1em;
- padding: 2px 2px 2px 10px;
- position: relative;
- }
- jquery...s?v=5.3 (line 391)
- .ui-dialog-titlebar {
- background-color: #5D81AB;
- background-image: url("../../Images/ThkStrip.jpg");
- background-repeat: repeat-x;
- }
- Sales_...s?v=5.3 (line 1436)
- .ui-corner-all {
- border-radius: 6px 6px 6px 6px;
- }
- jquery...s?v=5.3 (line 282)
- .ui-widget-header {
- border: 1px solid #C4D1E7;
- color: #222222;
- font-weight: bold;
- }
- jquery...s?v=5.3 (line 55)
- .ui-helper-clearfix {
- display: block;
- }
- $("#Applon").dialog({
- autoOpen: false,
- height: 370,
- width: 710,
- modal: true,
- draggable: false,
- buttons: {
- //'Create an account': function() { },
- Close: function() {
- $(this).dialog('close');
- //$('input:visible:enabled:first').focus();
- }
- },
- close: function() {
- }
- $('document').ready(function() {
- $("#main").mouseleave(function()
- {
- $(this).mouseup();
- });
- });
- $('document').ready(function() {
- $("#main").mouseleave(function()
- {
- $(this).mouseup();
- });
- });
- $('document').ready(function() {
- $("#main").live("mouseleave", function() {
- $(this).mouseup();
- });
- });