Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / resizable / basic.html
index cd51084..41db227 100644 (file)
-<html>\r
-<head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r
-<title>Resizable Examples</title>\r
-<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />\r
-\r
-   <!-- GC -->\r
-       <!-- LIBS -->\r
-       <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>\r
-       <!-- ENDLIBS -->\r
-\r
-    <script type="text/javascript" src="../../ext-all.js"></script>\r
-<script language="javascript" src="basic.js"></script>\r
-\r
-<!-- Common Styles for the examples -->\r
-<link rel="stylesheet" type="text/css" href="../shared/examples.css" />\r
-<style type="text/css">\r
-#basic, #animated {\r
-    border:1px solid #c3daf9;\r
-    color:#1e4e8f;\r
-    font:bold 14px tahoma,verdana,helvetica;\r
-    text-align:center;\r
-    padding-top:20px;\r
-}\r
-#snap {\r
-    border:1px solid #c3daf9;\r
-    overflow:hidden;\r
-}\r
-#custom {\r
-    cursor:move;\r
-}\r
-#custom-rzwrap{\r
-    z-index: 100;\r
-}\r
-#custom-rzwrap .x-resizable-handle{\r
-    width:11px;\r
-    height:11px;\r
-    background:transparent url(../../resources/images/default/sizer/square.gif) no-repeat;\r
-    margin:0px;\r
-}\r
-#custom-rzwrap .x-resizable-handle-east, #custom-rzwrap .x-resizable-handle-west{\r
-    top:45%;\r
-}\r
-#custom-rzwrap .x-resizable-handle-north, #custom-rzwrap .x-resizable-handle-south{\r
-    left:45%;\r
-}\r
-</style>\r
-</head>\r
-\r
-<body>\r
-<script type="text/javascript" src="../shared/examples.js"></script><!-- EXAMPLES -->\r
-<h1>Resizable Examples</h1>\r
-<p>These examples show how to apply a floating (default) and pinned Resizable component to a standard element.</p>\r
-<p>Note that the js is not minified so it is readable. See <a href="basic.js">basic.js</a> for the full source code.</p>\r
-\r
-<p>\r
-    <b>Basic Example</b><br />\r
-    This is a basic as you get. To resize the box, position your mouse anywhere near the bottom,\r
-    right or border right edge of the box. This example uses the default "floating" handles.\r
-</p>\r
-<div id="basic">Resize Me!</div>\r
-<pre class="code"><code>var basic = new Ext.Resizable('basic', {\r
-        width: 200,\r
-        height: 100,\r
-        minWidth:100,\r
-        minHeight:50\r
-});</code></pre>\r
-<hr>\r
-<p>\r
-    <b>Wrapped Elements</b><br />\r
-    Some elements such as images and textareas don't allow child elements. In the past, you had\r
-    to wrap these elements and set up a Resizable with resize child. Resizable will\r
-    wrap the element, calculate adjustments for borders/padding and offset the handles for you. All you have to\r
-    do is set "wrap:true". The manual way of specifying a "resizeChild" is still supported as well.\r
-</p><p>\r
-    <b>Pinned Handles</b><br />\r
-    Notice this example has the resize handles "pinned". This is done by setting "pinned:true".\r
-</p><p>\r
-    <b>Dynamic Sizing</b><br />\r
-    If you don't like the proxy resizing, you can also turn on dynamic sizing. Just set "dynamic:true".\r
-</p>\r
-<p>\r
-    Here's a textarea that is wrapped, has pinned handles and has dynamic sizing turned on.\r
-</p>\r
-<textarea id="dwrapped">\r
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed metus nibh, sodales a, porta at, vulputate eget, dui. Pellentesque ut nisl. Maecenas tortor turpis, interdum non, sodales non, iaculis ac, lacus. Vestibulum auctor, tortor quis iaculis malesuada, libero lectus bibendum purus, sit amet tincidunt quam turpis vel lacus. In pellentesque nisl non sem. Suspendisse nunc sem, pretium eget, cursus a, fringilla vel, urna. Aliquam commodo ullamcorper erat. Nullam vel justo in neque porttitor laoreet. Aenean lacus dui, consequat eu, adipiscing eget, nonummy non, nisi. Morbi nunc est, dignissim non, ornare sed, luctus eu, massa.\r
-Vivamus eget quam. Vivamus tincidunt diam nec urna. Curabitur velit. Quisque dolor magna, ornare sed, elementum porta, luctus in, leo.\r
-</textarea><br /><br />\r
-And look how simple the code is, even my grandma could write it.\r
-<pre class="code"><code>var dwrapped = new Ext.Resizable('dwrapped', {\r
-    wrap:true,\r
-    pinned:true,\r
-    width:450,\r
-    height:150,\r
-    minWidth:200,\r
-    minHeight: 50,\r
-    dynamic: true\r
-});</code></pre>\r
-<hr>\r
-<p>\r
-<b>Preserve Ratio</b><br />\r
-    For some things like images, you will probably want to preserve the ratio of width to height. Just set preserveRatio:true.\r
-</p>\r
-<img id="wrapped" src="sara.jpg" width="200" height="250"/>\r
-<pre class="code"><code>var wrapped = new Ext.Resizable('wrapped', {\r
-    wrap:true,\r
-    pinned:true,\r
-    minWidth:50,\r
-    minHeight: 50,\r
-    preserveRatio: true\r
-});</code></pre>\r
-<hr>\r
-<p>\r
-<b>Transparent Handles</b><br />\r
-    If you just want the element to be resizable without any fancy handles, set transparent to true.\r
-</p>\r
-<img id="transparent" src="zack.jpg" width="100" height="176"/>\r
-<pre class="code"><code>var transparent = new Ext.Resizable('transparent', {\r
-    wrap:true,\r
-    minWidth:50,\r
-    minHeight: 50,\r
-    preserveRatio: true,\r
-    transparent:true\r
-});</code></pre>\r
-<hr>\r
-<p>\r
-    <b>Customizable Handles</b><br />\r
-    Resizable elements are resizable 8 ways. 8 way resizing for a static positioned element will cause the element to be positioned relative and taken out of the document flow. For resizing which adjusts the\r
-    x and y of the element, the element should be positioned absolute. You can also control which handles are displayed by setting the "handles" attribute.\r
-    The handles are styled using CSS so they can be customized to look however you would like them to. \r
-</p>\r
-<p>\r
-    This image has 8 way resizing, custom handles, is draggable and 8 way preserved ratio (that wasn't easy!).<br />\r
-    <b>Double click anywhere on the image to hide it when you are done.</b>\r
-</p>\r
-<img id="custom" src="sara_and_zack.jpg" width="200" height="152" style="position:absolute;left:0;top:0;"/>\r
-<div style="padding:8px;border:1px solid #c3daf9;background:#d9e8fb;width:150px;text-align:center;"><button id="showMe">Show Me</button></div>\r
-<pre class="code"><code>var custom = new Ext.Resizable('custom', {\r
-    wrap:true,\r
-    pinned:true,\r
-    minWidth:50,\r
-    minHeight: 50,\r
-    preserveRatio: true,\r
-    dynamic:true,\r
-    handles: 'all', // shorthand for 'n s e w ne nw se sw'\r
-    draggable:true\r
-});</code></pre>\r
-<hr>\r
-<p>\r
-    <b>Snapping</b><br />\r
-    Resizable also supports basic snapping in increments. \r
-</p>\r
-<div id="snap"></div>\r
-<pre class="code"><code>var snap = new Ext.Resizable('snap', {\r
-    pinned:true,\r
-    width:250,\r
-    height:100,\r
-    handles: 'e',\r
-    widthIncrement:50,\r
-    minWidth: 50,\r
-    dynamic: true\r
-});\r
-</code></pre>\r
-Warning: Snapping and preserveRatio conflict and can not be used together.\r
-<hr>\r
-<p>\r
-    <b>Animated Transitions</b><br />\r
-    Resize operations can also be animated. Animations support configurable easing and duration.\r
-    Here's a very basic clone of the first element, but with animation turned on. I used a "backIn"\r
-    easing and made it a little slower than default.\r
-</p>\r
-<div id="animated">Animate Me!</div>\r
-<pre class="code"><code>var animated = new Ext.Resizable('animated', {\r
-    width: 200,\r
-    height: 100,\r
-    minWidth:100,\r
-    minHeight:50,\r
-    animate:true,\r
-    easing: 'backIn',\r
-    duration:.6\r
-});</code></pre>\r
-Warning: for obvious reasons animate and dynamic resizing can not be used together.\r
-</body>\r
-</html>\r
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<title>Resizable Examples</title>
+<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
+
+   <!-- GC -->
+       <!-- LIBS -->
+       <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
+       <!-- ENDLIBS -->
+
+    <script type="text/javascript" src="../../ext-all.js"></script>
+<script language="javascript" src="basic.js"></script>
+
+<!-- Common Styles for the examples -->
+<link rel="stylesheet" type="text/css" href="../shared/examples.css" />
+<style type="text/css">
+#basic, #animated {
+    border:1px solid #c3daf9;
+    color:#1e4e8f;
+    font:bold 14px tahoma,verdana,helvetica;
+    text-align:center;
+    padding-top:20px;
+}
+#snap {
+    border:1px solid #c3daf9;
+    overflow:hidden;
+}
+#custom {
+    cursor:move;
+}
+#custom-rzwrap{
+    z-index: 100;
+}
+#custom-rzwrap .x-resizable-handle{
+    width:11px;
+    height:11px;
+    background:transparent url(../../resources/images/default/sizer/square.gif) no-repeat;
+    margin:0px;
+}
+#custom-rzwrap .x-resizable-handle-east, #custom-rzwrap .x-resizable-handle-west{
+    top:45%;
+}
+#custom-rzwrap .x-resizable-handle-north, #custom-rzwrap .x-resizable-handle-south{
+    left:45%;
+}
+</style>
+</head>
+
+<body>
+<script type="text/javascript" src="../shared/examples.js"></script><!-- EXAMPLES -->
+<h1>Resizable Examples</h1>
+<p>These examples show how to apply a floating (default) and pinned Resizable component to a standard element.</p>
+<p>Note that the js is not minified so it is readable. See <a href="basic.js">basic.js</a> for the full source code.</p>
+
+<p>
+    <b>Basic Example</b><br />
+    This is a basic as you get. To resize the box, position your mouse anywhere near the bottom,
+    right or border right edge of the box. This example uses the default "floating" handles.
+</p>
+<div id="basic">Resize Me!</div>
+<pre class="code"><code>var basic = new Ext.Resizable('basic', {
+        width: 200,
+        height: 100,
+        minWidth:100,
+        minHeight:50
+});</code></pre>
+<hr>
+<p>
+    <b>Wrapped Elements</b><br />
+    Some elements such as images and textareas don't allow child elements. In the past, you had
+    to wrap these elements and set up a Resizable with resize child. Resizable will
+    wrap the element, calculate adjustments for borders/padding and offset the handles for you. All you have to
+    do is set "wrap:true". The manual way of specifying a "resizeChild" is still supported as well.
+</p><p>
+    <b>Pinned Handles</b><br />
+    Notice this example has the resize handles "pinned". This is done by setting "pinned:true".
+</p><p>
+    <b>Dynamic Sizing</b><br />
+    If you don't like the proxy resizing, you can also turn on dynamic sizing. Just set "dynamic:true".
+</p>
+<p>
+    Here's a textarea that is wrapped, has pinned handles and has dynamic sizing turned on.
+</p>
+<textarea id="dwrapped">
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed metus nibh, sodales a, porta at, vulputate eget, dui. Pellentesque ut nisl. Maecenas tortor turpis, interdum non, sodales non, iaculis ac, lacus. Vestibulum auctor, tortor quis iaculis malesuada, libero lectus bibendum purus, sit amet tincidunt quam turpis vel lacus. In pellentesque nisl non sem. Suspendisse nunc sem, pretium eget, cursus a, fringilla vel, urna. Aliquam commodo ullamcorper erat. Nullam vel justo in neque porttitor laoreet. Aenean lacus dui, consequat eu, adipiscing eget, nonummy non, nisi. Morbi nunc est, dignissim non, ornare sed, luctus eu, massa.
+Vivamus eget quam. Vivamus tincidunt diam nec urna. Curabitur velit. Quisque dolor magna, ornare sed, elementum porta, luctus in, leo.
+</textarea><br /><br />
+And look how simple the code is, even my grandma could write it.
+<pre class="code"><code>var dwrapped = new Ext.Resizable('dwrapped', {
+    wrap:true,
+    pinned:true,
+    width:450,
+    height:150,
+    minWidth:200,
+    minHeight: 50,
+    dynamic: true
+});</code></pre>
+<hr>
+<p>
+<b>Preserve Ratio</b><br />
+    For some things like images, you will probably want to preserve the ratio of width to height. Just set preserveRatio:true.
+</p>
+<img id="wrapped" src="sara.jpg" width="200" height="250"/>
+<pre class="code"><code>var wrapped = new Ext.Resizable('wrapped', {
+    wrap:true,
+    pinned:true,
+    minWidth:50,
+    minHeight: 50,
+    preserveRatio: true
+});</code></pre>
+<hr>
+<p>
+<b>Transparent Handles</b><br />
+    If you just want the element to be resizable without any fancy handles, set transparent to true.
+</p>
+<img id="transparent" src="zack.jpg" width="100" height="176"/>
+<pre class="code"><code>var transparent = new Ext.Resizable('transparent', {
+    wrap:true,
+    minWidth:50,
+    minHeight: 50,
+    preserveRatio: true,
+    transparent:true
+});</code></pre>
+<hr>
+<p>
+    <b>Customizable Handles</b><br />
+    Resizable elements are resizable 8 ways. 8 way resizing for a static positioned element will cause the element to be positioned relative and taken out of the document flow. For resizing which adjusts the
+    x and y of the element, the element should be positioned absolute. You can also control which handles are displayed by setting the "handles" attribute.
+    The handles are styled using CSS so they can be customized to look however you would like them to. 
+</p>
+<p>
+    This image has 8 way resizing, custom handles, is draggable and 8 way preserved ratio (that wasn't easy!).<br />
+    <b>Double click anywhere on the image to hide it when you are done.</b>
+</p>
+<img id="custom" src="sara_and_zack.jpg" width="200" height="152" style="position:absolute;left:0;top:0;"/>
+<div style="padding:8px;border:1px solid #c3daf9;background:#d9e8fb;width:150px;text-align:center;"><button id="showMe">Show Me</button></div>
+<pre class="code"><code>var custom = new Ext.Resizable('custom', {
+    wrap:true,
+    pinned:true,
+    minWidth:50,
+    minHeight: 50,
+    preserveRatio: true,
+    dynamic:true,
+    handles: 'all', // shorthand for 'n s e w ne nw se sw'
+    draggable:true
+});</code></pre>
+<hr>
+<p>
+    <b>Snapping</b><br />
+    Resizable also supports basic snapping in increments. 
+</p>
+<div id="snap"></div>
+<pre class="code"><code>var snap = new Ext.Resizable('snap', {
+    pinned:true,
+    width:250,
+    height:100,
+    handles: 'e',
+    widthIncrement:50,
+    minWidth: 50,
+    dynamic: true
+});
+</code></pre>
+Warning: Snapping and preserveRatio conflict and can not be used together.
+<hr>
+<p>
+    <b>Animated Transitions</b><br />
+    Resize operations can also be animated. Animations support configurable easing and duration.
+    Here's a very basic clone of the first element, but with animation turned on. I used a "backIn"
+    easing and made it a little slower than default.
+</p>
+<div id="animated">Animate Me!</div>
+<pre class="code"><code>var animated = new Ext.Resizable('animated', {
+    width: 200,
+    height: 100,
+    minWidth:100,
+    minHeight:50,
+    animate:true,
+    easing: 'backIn',
+    duration:.6
+});</code></pre>
+Warning: for obvious reasons animate and dynamic resizing can not be used together.
+</body>
+</html>