Layout components as border layout : Layout « YUI Library « JavaScript DHTML






Layout components as border layout

 

<!--
Software License Agreement (BSD License)
Copyright (c) 2009, Yahoo! Inc.
All rights reserved.

Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of conditions and the
      following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    * Neither the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Sources of Intellectual Property Included in the YUI Library

YUI is issued by Yahoo! under the BSD license above. Below is a list of certain publicly available software that is the source of intellectual property in YUI, along with the licensing terms that pertain to thosesources of IP. This list is for informational purposes only and is not intended to represent an exhaustive list of third party contributions to the YUI.

    * Douglas Crockford's JSON parsing and stringifying methods: In the JSON Utility, Douglas Crockford's JSON parsing and stringifying methods are adapted from work published at JSON.org. The adapted work is in the public domain.
    * Robert Penner's animation-easing algorithms: In the Animation Utility, YUI makes use of Robert Penner's algorithms for easing.
    * Geoff Stearns's SWFObject: In the Charts Control and the Uploader versions through 2.7.0, YUI makes use of Geoff Stearns's SWFObject v1.5 for Flash Player detection and embedding. More information on SWFObject can be found here (http://blog.deconcept.com/swfobject/). SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License (http://www.opensource.org/licenses/mit-license.php).
    * Diego Perini's IEContentLoaded technique: The Event Utility employs a technique developed by Diego Perini and licensed under GPL. YUI's use of this technique is included under our BSD license with the author's permission.

-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Simple Application - Layout Example</title>
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/reset-fonts-grids/reset-fonts-grids.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/menu/assets/skins/sam/menu.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/button/assets/skins/sam/button.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/calendar/assets/skins/sam/calendar.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/editor/assets/skins/sam/editor.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/resize/assets/skins/sam/resize.css" />
<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/layout/assets/skins/sam/layout.css" />
<style type="text/css">
/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */

body {
  margin:0;
  padding:0;
}
#demo .yui-resize-handle-br {
    height: 11px;
    width: 11px;
    background-position: -20px -60px;
    background-color: transparent;
}
#demo .yui-calcontainer,
#demo .yui-editor-container {
    border: none;
}
#demo .yui-layout {
    background-color: transparent;
}
#status img {
    padding: 4px;
    float: left;
}
#demo textarea {
    visibility: hidden;
}
#demo .yui-toolbar .bd {
    padding: 0;
    border: none;
    background-color: #fff;
}

</style>
<script type="text/javascript" src="yui_2.7.0b-lib/utilities/utilities.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/container/container-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/calendar/calendar-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/resize/resize-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/editor/simpleeditor-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/layout/layout-min.js"></script>
</head>
<body class=" yui-skin-sam">

<div id="demo"></div>

<script>
(function() {
    var Dom = YAHOO.util.Dom,
        Event = YAHOO.util.Event,
        layout = null,
        cal = null,
        editor = null,
        conn = null,
        panel = null,
        dateSelected = null,
        editorData = {};

    panel = new YAHOO.widget.Panel('demo', {
        width: '700px',
        underlay: 'none',
        close: false,
        xy: [100, 100]
    });
    panel.setHeader('Editor');
    panel.setBody('<div id="layout"></div>');
    panel.renderEvent.subscribe(function() {
        Event.onAvailable('layout', function() {
            layout = new YAHOO.widget.Layout('layout', {
                height: 400,
                units: [
                    { position: 'top', height: 25, header: 'Date Editor', gutter: '2' },
                    { position: 'left', width: 205, body: '', gutter: '0 5 0 2' },
                    { position: 'bottom', height: 25, id: 'status', body: 'Status', gutter: '2' },
                    { position: 'center', body: 'Select a date..', gutter: '0 2 0 0' }
                ]
            });
            
            layout.on('render', function() {
                var c = layout.getUnitByPosition('center');
                c.set('body', '<textarea id="caleditor"></textarea>');
                editor = new YAHOO.widget.SimpleEditor('caleditor', {
                    height: '305px',
                    width: c.get('width') + 'px',
                    dompath: false,
                    animate: false,
                    focusAtStart: true,
                    toolbar: {
                        grouplabels: false,
                        buttons: [
                            { group: 'textstyle', label: 'Font Style',
                                buttons: [
                                    { type: 'select', label: 'Arial', value: 'fontname', disabled: true,
                                        menu: [
                                            { text: 'Arial', checked: true },
                                            { text: 'Arial Black' },
                                            { text: 'Comic Sans MS' },
                                            { text: 'Courier New' },
                                            { text: 'Lucida Console' },
                                            { text: 'Tahoma' },
                                            { text: 'Times New Roman' },
                                            { text: 'Trebuchet MS' },
                                            { text: 'Verdana' }
                                        ]
                                    },
                                    { type: 'spin', label: '13', value: 'fontsize', range: [ 9, 75 ], disabled: true },
                                    { type: 'separator' },
                                    { type: 'push', label: 'Bold', value: 'bold' },
                                    { type: 'push', label: 'Italic', value: 'italic' },
                                    { type: 'push', label: 'Underline', value: 'underline' },
                                    { type: 'separator' },
                                    { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
                                    { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
                                ]
                            }
                        ]
                    }
                });
                editor.on('editorContentLoaded', function() {
                    var d = new Date();
                    var today = d.getMonth() + 1 + '/' + d.getDate() + '/' + d.getFullYear();
                    dateSelected = [today];
                    layout.getUnitByPosition('top').set('header', 'Editing Date: ' + today);
                    cal.cfg.setProperty('selected', today);
                    cal.render();
                });
                editor.render();
                var l = layout.getUnitByPosition('left');
                var el = document.createElement('div');
                l.body.appendChild(el);
                cal = new YAHOO.widget.Calendar(el);
                cal.selectEvent.subscribe(function(ev, args) {
                    if (dateSelected) {
                        //Connection Manager
                        layout.getUnitByPosition('bottom').set('body', '<img src="yui_2.7.0b-assets/layout-assets/progress.gif"> Sending Data...');
                        var html = editor.getEditorHTML();
                        var url = 'yui_2.7.0b-assets/layout-assets/post4.php?html=' + html;
                        editorData[dateSelected] = html;
                        conn = YAHOO.util.Connect.asyncRequest('POST', url, {
                            success: function() {
                                layout.getUnitByPosition('bottom').set('body', 'Data Saved..');
                            },
                            failure: function() {
                            }
                        });
                        editor.setEditorHTML('&nbsp;');
                    }
                    var d = args[0][0];
                    dateSelected = d[1] + '/' + d[2] + '/' + d[0];
                    layout.getUnitByPosition('top').set('header', 'Editing Date: ' + d[1] + '/' + d[2] + '/' + d[0]);
                    if (dateSelected && editorData[dateSelected]) {
                        editor.setEditorHTML(editorData[dateSelected]);
                    }

                    var dates = [dateSelected];
                    for (var i in editorData) {
                        dates[dates.length] = i;
                    }
                    cal.cfg.setProperty('selected', dates.join(','));
                    cal.render();
                });
                cal.render();
            });
            layout.render();
        });
    });
    panel.render(document.body);
    resize = new YAHOO.util.Resize('demo', {
        handles: ['br'],
        autoRatio: true,
        status: true,
        proxy: true,
        useShim: true,
        minWidth: 700,
        minHeight: 400
    });
    resize.on('resize', function(args) {
        var h = args.height;
        var hh = this.header.clientHeight;
        var padding = ((10 * 2) + 2); //Sam's skin applied a 10px padding and a 1 px border to the element..
        var bh = (h - hh - padding);
        Dom.setStyle(this.body, 'height', bh + 'px');
        layout.set('height', bh);
        layout.set('width', (args.width - padding));
        layout.resize();

        //Editor Resize
        var th = (editor.toolbar.get('element').clientHeight + 2); //It has a 1px border..
        var eH = (h - th);
        editor.set('width', args.width + 'px');
        editor.set('height', eH + 'px');
    }, panel, true);
    resize.on('endResize', function() {
        //Fixing IE's calculations
        this.innerElement.style.height = '';
        //Focus the Editor so they can type.
        editor._focusWindow();
    }, panel, true);
    
})();
</script>
</body>
</html>
<!-- presentbright.corp.yahoo.com uncompressed/chunked Thu Feb 19 10:53:16 PST 2009 -->

   
  








yui_2.7.0b.zip( 4,431 k)

Related examples in the same category

1.Using a Layout with Grids CSS
2.Website Left Nav With Submenus From JavaScript (YUI Library)
3.Website Left Nav Using Animation With Submenus From JavaScript (YUI Library)
4.Nested Layout - Example
5.Full Page Layout
6.Website Top Nav With Submenus From JavaScript