jquery Programming Glossary: minheight
jQuery Drag/Resize with CSS Transform Scale http://stackoverflow.com/questions/10212683/jquery-drag-resize-with-css-transform-scale contentElem.width 10 these need to be large and negative minHeight contentElem.height 10 so we can shrink our resizable while scaled..
Jquery resizable plugin, set minWidth depending on the dragging edge http://stackoverflow.com/questions/10772843/jquery-resizable-plugin-set-minwidth-depending-on-the-dragging-edge .data 'resizable' .axis case 'n' this .resizable option minHeight 75 break case 's' this .resizable option minHeight 100 break.. minHeight 75 break case 's' this .resizable option minHeight 100 break case 'e' this .resizable option minWidth 150 break..
Auto height resizing in Fancybox http://stackoverflow.com/questions/10996212/auto-height-resizing-in-fancybox document .ready function .various .fancybox maxWidth 713 minHeight 250 fitToView false autoSize true autoScale true closeClick.. scrolling false padding 0 script I thought that setting a minHeight and autoScale would do it but it hasn't. And using resize does..
Resizing iFrame with jQuery UI http://stackoverflow.com/questions/1234144/resizing-iframe-with-jquery-ui fine Head script document .ready function #test .resizable minHeight 50 minWidth 50 script Body div id test style border .1em solid..
I created textarea expander from script but after, it doesn't expands http://stackoverflow.com/questions/12966162/i-created-textarea-expander-from-script-but-after-it-doesnt-expands own risk. Usage From JavaScript use node .TextAreaExpander minHeight maxHeight where node is the DOM node selector e.g. textarea.. where node is the DOM node selector e.g. textarea minHeight is the minimum textarea height in pixels optional maxHeight.. jQuery plugin definition .fn.TextAreaExpander function minHeight maxHeight var hCheck .browser.msie .browser.opera resize a textarea..
Close dialog on click (anywhere) http://stackoverflow.com/questions/1675893/close-dialog-on-click-anywhere jasonday eccKr function '#dialog' .dialog autoOpen false minHeight 100 width 342 draggable true resizable false modal false closeText..
jQuery UI - Close Dialog When Clicked Outside http://stackoverflow.com/questions/2554779/jquery-ui-close-dialog-when-clicked-outside function var field_hint ' div div ' .dialog autoOpen false minHeight 50 resizable false width 375 '.hint' .click function var hint.. .hint var field_hint ' div div ' .dialog autoOpen false minHeight 0 resizable false width 376 .bind 'clickoutside' function..
How to resize ONLY horizontally or vertically with jquery UI Resizable? http://stackoverflow.com/questions/3628194/how-to-resize-only-horizontally-or-vertically-with-jquery-ui-resizable current value. Example foo.resizable maxHeight foo.height minHeight foo.height But this is really ugly especially if I have to change..
Fix for jQuery splitter in IE9 http://stackoverflow.com/questions/5321284/fix-for-jquery-splitter-in-ie9 marginBottom splitter._hmin Math.max dimSum splitter minHeight 20 window .bind resize function e if e.target window var top..
jquery ui dialog box need to return value, when user presses button, but not working http://stackoverflow.com/questions/6049687/jquery-ui-dialog-box-need-to-return-value-when-user-presses-button-but-not-wor .dialog bgiframe true autoOpen false minHeight 200 width 350 modal true closeOnEscape false draggable false.. #modal_confirm_yes_no .dialog bgiframe true autoOpen false minHeight 200 width 350 modal true closeOnEscape false draggable false..
Reload of jqgrid not happening with loadonce:true http://stackoverflow.com/questions/7067439/reload-of-jqgrid-not-happening-with-loadoncetrue true del true #userList .jqGrid 'gridResize' minWidth 450 minHeight 150 I tried adding following code to reload #userList .jqGrid..
jQuery UI Dialog with ASP.NET button postback http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback show 'Transfer' hide 'Transfer' width 320 autoOpen false minHeight 10 minwidth 10 jQuery document .ready function jQuery #button_id.. 'Transfer' hide 'Transfer' width 320 autoOpen false minHeight 10 minwidth 10 dlg.parent .appendTo jQuery form first share..
jqgrid - resize and overlay http://stackoverflow.com/questions/8671052/jqgrid-resize-and-overlay #myjqgrid .jqGrid 'gridResize' minWidth 800 maxWidth 1405 minHeight 350 maxHeight 680 PROBLEM THAT I AM HAVING the pagination..
Custom Resizable Handles in JQuery UI http://stackoverflow.com/questions/958419/custom-resizable-handles-in-jquery-ui codeTextBox.resizable handles s .resizable s minHeight 80 maxHeight 400 script Of course I can't make the resizable..
jQuery Drag/Resize with CSS Transform Scale http://stackoverflow.com/questions/10212683/jquery-drag-resize-with-css-transform-scale transform scale fix for resizable this .resizable minWidth contentElem.width 10 these need to be large and negative minHeight contentElem.height 10 so we can shrink our resizable while scaled resize function event ui var changeWidth ui.size.width..
Jquery resizable plugin, set minWidth depending on the dragging edge http://stackoverflow.com/questions/10772843/jquery-resizable-plugin-set-minwidth-depending-on-the-dragging-edge handles 'e n s w' resize function event ui switch this .data 'resizable' .axis case 'n' this .resizable option minHeight 75 break case 's' this .resizable option minHeight 100 break case 'e' this .resizable option minWidth 150 break .. this .data 'resizable' .axis case 'n' this .resizable option minHeight 75 break case 's' this .resizable option minHeight 100 break case 'e' this .resizable option minWidth 150 break case 'w' this .resizable option minWidth 200 break ..
Auto height resizing in Fancybox http://stackoverflow.com/questions/10996212/auto-height-resizing-in-fancybox Here's how I'm calling it script type text javascript document .ready function .various .fancybox maxWidth 713 minHeight 250 fitToView false autoSize true autoScale true closeClick true openEffect 'fade' closeEffect 'fade' scrolling false padding.. true closeClick true openEffect 'fade' closeEffect 'fade' scrolling false padding 0 script I thought that setting a minHeight and autoScale would do it but it hasn't. And using resize does nothing. Thanks all jquery fancybox share improve this..
Resizing iFrame with jQuery UI http://stackoverflow.com/questions/1234144/resizing-iframe-with-jquery-ui iFrame with jQuery UI I have this code and it works fine Head script document .ready function #test .resizable minHeight 50 minWidth 50 script Body div id test style border .1em solid black div However when I change my div into iframe I can't..
I created textarea expander from script but after, it doesn't expands http://stackoverflow.com/questions/12966162/i-created-textarea-expander-from-script-but-after-it-doesnt-expands auto expanding textarea 1 Please use as you wish at your own risk. Usage From JavaScript use node .TextAreaExpander minHeight maxHeight where node is the DOM node selector e.g. textarea minHeight is the minimum textarea height in pixels optional.. Usage From JavaScript use node .TextAreaExpander minHeight maxHeight where node is the DOM node selector e.g. textarea minHeight is the minimum textarea height in pixels optional maxHeight is the maximum textarea height in pixels optional Alternatively.. use an appropriate height between 50 and 200 pixels. function jQuery plugin definition .fn.TextAreaExpander function minHeight maxHeight var hCheck .browser.msie .browser.opera resize a textarea function ResizeTextarea e event or initialize element..
Close dialog on click (anywhere) http://stackoverflow.com/questions/1675893/close-dialog-on-click-anywhere .dialog 'close' Non Modal dialog Method 2 http jsfiddle.net jasonday eccKr function '#dialog' .dialog autoOpen false minHeight 100 width 342 draggable true resizable false modal false closeText 'Close' open function closedialog 1 document .bind..
jQuery UI - Close Dialog When Clicked Outside http://stackoverflow.com/questions/2554779/jquery-ui-close-dialog-when-clicked-outside Here's the code for opening the dialog document .ready function var field_hint ' div div ' .dialog autoOpen false minHeight 50 resizable false width 375 '.hint' .click function var hint this field_hint.html hint.html field_hint.dialog 'option'.. events plugin document .ready function dialog element to .hint var field_hint ' div div ' .dialog autoOpen false minHeight 0 resizable false width 376 .bind 'clickoutside' function e target e.target if target.filter '.hint' .length target.filter..
How to resize ONLY horizontally or vertically with jquery UI Resizable? http://stackoverflow.com/questions/3628194/how-to-resize-only-horizontally-or-vertically-with-jquery-ui-resizable found is to set the max and min height or width with the current value. Example foo.resizable maxHeight foo.height minHeight foo.height But this is really ugly especially if I have to change the element's height programmatically. Thanks in advance...
Fix for jQuery splitter in IE9 http://stackoverflow.com/questions/5321284/fix-for-jquery-splitter-in-ie9 dimSum splitter borderTopWidth borderBottomWidth marginBottom splitter._hmin Math.max dimSum splitter minHeight 20 window .bind resize function e if e.target window var top splitter.offset .top var wh window .height splitter.css height..
jquery ui dialog box need to return value, when user presses button, but not working http://stackoverflow.com/questions/6049687/jquery-ui-dialog-box-need-to-return-value-when-user-presses-button-but-not-wor open if answer delete else don't delete Jquery dialog #modal_confirm_yes_no .dialog bgiframe true autoOpen false minHeight 200 width 350 modal true closeOnEscape false draggable false resizable false buttons 'Yes' function this .dialog.. javascript is asynchronous. so you have to use callbacks #modal_confirm_yes_no .dialog bgiframe true autoOpen false minHeight 200 width 350 modal true closeOnEscape false draggable false resizable false buttons 'Yes' function this .dialog 'close'..
Reload of jqgrid not happening with loadonce:true http://stackoverflow.com/questions/7067439/reload-of-jqgrid-not-happening-with-loadoncetrue return #userList .jqGrid 'navGrid' #pager1 add true edit true del true #userList .jqGrid 'gridResize' minWidth 450 minHeight 150 I tried adding following code to reload #userList .jqGrid 'setGridParam' datatype xml .trigger 'reloadGrid' Can some..
jQuery UI Dialog with ASP.NET button postback http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback function jQuery #dialog .dialog draggable true resizable true show 'Transfer' hide 'Transfer' width 320 autoOpen false minHeight 10 minwidth 10 jQuery document .ready function jQuery #button_id .click function e jQuery '#dialog' .dialog 'option' 'position'..
jqgrid - resize and overlay http://stackoverflow.com/questions/8671052/jqgrid-resize-and-overlay '#Pager' add false edit false del false position 'right' #myjqgrid .jqGrid 'gridResize' minWidth 800 maxWidth 1405 minHeight 350 maxHeight 680 PROBLEM THAT I AM HAVING the pagination works fine when I resize the grid if I don't change the CSS..
Custom Resizable Handles in JQuery UI http://stackoverflow.com/questions/958419/custom-resizable-handles-in-jquery-ui type text javascript function var codeTextBox # codeTextBox.ClientID codeTextBox.resizable handles s .resizable s minHeight 80 maxHeight 400 script Of course I can't make the resizable handle div class resizable s a child of the TextBox textarea..
|