Editor in a Dialog Control : Dialog « YUI Library « JavaScript DHTML






Editor in a Dialog Control

 

<!--
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=utf-8">
<title>Editor in a Dialog Control</title>

<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;
}
</style>

<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/fonts/fonts-min.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/editor/assets/skins/sam/editor.css" />
<script type="text/javascript" src="yui_2.7.0b-lib/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/json/json-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/element/element-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/button/button-min.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/connection/connection-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/menu/menu-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/editor/editor-min.js"></script>


<!--begin custom header content for this example-->
<style type="text/css">
    #responseContainer {  
    margin:1em;
      border: 1px solid black;
      background-color: #ccc;
      height: 4em;
    padding: 1em;
  }
</style>
<!--end custom header content for this example-->

</head>

<body class=" yui-skin-sam">


<h1>Editor in a Dialog Control</h1>

<div class="exampleIntro">
  <p>In YUI-based applications, it's common for forms to appear as part of <a href="http://developer.yahoo.com/yui/container/dialog/">Dialogs</a>.  In this example, a form enhanced with the <a href="http://developer.yahoo.com/yui/editor">Rich Text Editor</a> appears in a Dialog.  Read the tutorial below to learn how to integrate the RTE seamlessly with your Dialog's form contents.</p>
  
      
</div>

<!--BEGIN SOURCE CODE FOR EXAMPLE  -->

<div id="dialogContainer">
  <div class="hd">Enter Title and Description:</div>
  <div class="bd">
    <form id="dialogForm" name="dialogForm" method="post" action="yui_2.7.0b-assets/editor-assets/post.php">
      
      <p><label for="title">Title:</label> <input name="title" id="title" /></p>
      
      <p><label for="description">Description:</label></p>
      
        <textarea name="description" id="description"></textarea>
      
      <div id="descriptionContainer"></div>
      
      <!--This element is here only for purposes of Progressive Enhancement; we will disable and
      hide it as we render the Dialog so that doesn't interfere with the Dialog's operation.-->
      <p><input id="submitButton" type="submit" /></p>
      
    </form>
  </div>
</div>

<button id="showDlg">Show Dialog</button>

<div id="responseContainer">
  <p>Dialog's post response will appear here after you submit the Dialog.</p>
</div>

<script language="JavaScript">
(function() {

  //hide and disable the non-dialog submit button:
  document.getElementById("submitButton").disabled = true;
  document.getElementById("submitButton").style.display = "none";
  
  //create the RTE:
  var editor = new YAHOO.widget.Editor('description', {
      width: '702px',
    height: '200px'
  });

    //After the Editor renders it, we will hide it
    //so the iframe doesn't bleed through
  editor.on('afterRender', editor.hide);

  //render the editor explicitly into a container
  //within the Dialog's DOM:
  editor.render();
  
  //create Dialog:
  var dlg = new YAHOO.widget.Dialog("dialogContainer", {
    width:"725px",
    fixedcenter:true,
    modal:true,
    visible:false
  });

  //event handlers for our Dialog buttons:
  
  //if the user clicks "save", then we save the HTML
  //content of the RTE and submit the dialog:
  function handleSave() {
    editor.saveHTML();
    this.submit();
  }
  
  //if the user clicks cancel, we call Dialog's
  //cancel method:
  function handleCancel() {
    this.cancel();
  }
  
  //set up buttons for the Dialog and wire them
  //up to our handlers:
  var myButtons = [ { text:"Save", 
            handler:handleSave },
            { text:"Cancel", 
            handler:handleCancel,
            isDefault:true } ];
  dlg.cfg.queueProperty("buttons", myButtons);

  //Dialog by default will use Connection Manager to POST
  //form contents to the URI specified in the action
  //attribute of the form; we can wire up success and
  //failure handlers for the XHR call and act on them
  //just as we would with any Connection Manager
  //transaction:
  var onSuccess = function(o) {
    //we're going to get JSON back from post.php; we
    //can parse it using JSON.parse:
    var data = YAHOO.lang.JSON.parse(o.responseText);
    
    //in this case, we'll just output the contents to 
    //a div to see what they contain:
        document.getElementById("responseContainer").innerHTML = 'Status: ' + 
      data.Results.status + 
      '<br>' + (new Date().toString());
  }
  var onFailure = function(o) {
    //in the event of a failure, we can log the problem:
    YAHOO.log("Dialog reported a communication failure; connection object: " + YAHOO.lang.dump(o, 5));
  }
  dlg.callback.success = onSuccess;
  dlg.callback.failure = onFailure;

  //Now that our Dialog is fully configured, we can
  //render it:
  dlg.render();
  
  //RTE needs a little love to work in in a Dialog that can be 
  //shown and hidden; we let it know that it's being
  //shown/hidden so that it can recover from these actions:
  dlg.showEvent.subscribe(editor.show, editor, true);
  dlg.hideEvent.subscribe(editor.hide, editor, true);
  
  //instantiate button to show Dialog:
  var btn = new YAHOO.widget.Button("showDlg", {type:"link"});
  btn.on("click", dlg.show, dlg, true);
  
})();
</script>

<!--END SOURCE CODE FOR EXAMPLE  -->

</body>
</html>
<!-- presentbright.corp.yahoo.com uncompressed/chunked Thu Feb 19 10:53:14 PST 2009 -->

   
  








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

Related examples in the same category

1.Difference between modal dialog and modaless dialog
2.Layout form controls in a dialog
3.Put your control into Dialog
4.Show and hide dialog
5.Use SimpleDialog to solicit simple information from users — ok/cancel, yes/no