Added widget for 'styles' XET tag

This commit is contained in:
Andreas Stöckel 2011-08-16 12:56:55 +00:00
parent 41787c36f3
commit 40a11bdb4f
4 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,8 @@
* @version $Id$
*/
"use strict";
/*egw:uses
jquery.jquery;
et2_baseWidget;

View File

@ -391,7 +391,6 @@ var et2_widget = Class.extend({
// readonly type (suffixed with "_ro") is registered
var readonly = this.getArrayMgr("readonlys").isReadOnly(
_node.getAttribute("id"), _node.getAttribute("readonly"), this.readonly);
et2_debug("log", _node.getAttribute("id"), readonly);
if (readonly && typeof et2_registry[_nodeName + "_ro"] != "undefined")
{
constructor = et2_registry[_nodeName + "_ro"];

View File

@ -18,6 +18,7 @@
et2_button;
et2_description;
et2_textbox;
et2_styles;
// Requirements for the etemplate2 object
et2_xml;

View File

@ -18,6 +18,7 @@
<script src="../et2_button.js"></script>
<script src="../et2_box.js"></script>
<script src="../et2_textbox.js"></script>
<script src="../et2_styles.js"></script>
<script src="../etemplate2.js"></script>