JBoss Rich Faces SVN: r675 - trunk/docs/userguide/en/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-05-07 11:33:02 -0400 (Mon, 07 May 2007)
New Revision: 675
Modified:
trunk/docs/userguide/en/included/dropDownMenu.desc.xml
trunk/docs/userguide/en/included/dropDownMenu.xml
Log:
Modified: trunk/docs/userguide/en/included/dropDownMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.desc.xml 2007-05-07 14:27:06 UTC (rev 674)
+++ trunk/docs/userguide/en/included/dropDownMenu.desc.xml 2007-05-07 15:33:02 UTC (rev 675)
@@ -6,7 +6,7 @@
</keywordset>
</sectioninfo>
- <para>The <rich:dropDownMenu> component is used for creation multilevel dropdown menu.</para>
+ <para>The <rich:dropDownMenu> component is used for multilevel dropdown menu creation.</para>
<figure>
<title><rich:dropDownMenu> component</title>
<mediaobject>
@@ -22,7 +22,7 @@
<listitem><para>Highly customizable look and feel</para></listitem>
<listitem><para>Popup appearance event customization</para></listitem>
<listitem><para>Different submission modes</para></listitem>
- <listitem><para>Possibility of definition of complex representation elements</para></listitem>
+ <listitem><para>Possibility of complex representation elements definition</para></listitem>
<listitem><para>Disablement support</para></listitem>
<listitem><para>Smart and user defined positioning </para></listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.xml 2007-05-07 14:27:06 UTC (rev 674)
+++ trunk/docs/userguide/en/included/dropDownMenu.xml 2007-05-07 15:33:02 UTC (rev 675)
@@ -71,7 +71,7 @@
All attributes except the "value" are not required. The "value" attribute defines representation text.
</para>
<para>
- Also instead of "value" attribute you can use "label" facet.
+ Also instead of the "value" attribute you can use the "label" facet.
</para>
<para>
Example.
@@ -86,7 +86,7 @@
]]>
</programlisting>
<para>
- Use "event" attribute to define the event on the representation element that triggers the menu's appearance. The example of appearance menu by click see below.
+ Use the "event" attribute to define the an event on the representation element that triggers the menu appearance. The example of menu appearance on a click could be seen below.
</para>
<programlisting role="xml">
<![CDATA[
@@ -119,10 +119,10 @@
The"action" and "actionListener" item's attributes are ignored. Menu items don't fire any submits itself. Behavior is fully defined by the components nested to items.
</para>
<note><title>Note:</title>
- As the <rich:dropDownMenu> component do not provide own form use it in <form>…</h:form>.
+ As the <rich:dropDownMenu> component doesn't provide own form use it in <form>…</h:form>.
</note>
<para>
- The "direction" and "jointPoint" attributes are used for the definition ways of menu's appearance as it's shown in the example below.
+ The "direction" and "jointPoint" attributes are used for the definition ways of menu appearance as it's shown in the example below.
</para>
<para>
Possible values for the "direction" attribute are:
17 years, 7 months
JBoss Rich Faces SVN: r674 - trunk/richfaces/common/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-05-07 10:27:06 -0400 (Mon, 07 May 2007)
New Revision: 674
Modified:
trunk/richfaces/common/src/main/resources/org/richfaces/renderkit/html/scripts/browser_info.js
Log:
Added Safari and Konqueror to browsers list. Firefox is renamed to Iceweasel in some Linux distribs.
Modified: trunk/richfaces/common/src/main/resources/org/richfaces/renderkit/html/scripts/browser_info.js
===================================================================
--- trunk/richfaces/common/src/main/resources/org/richfaces/renderkit/html/scripts/browser_info.js 2007-05-07 14:06:02 UTC (rev 673)
+++ trunk/richfaces/common/src/main/resources/org/richfaces/renderkit/html/scripts/browser_info.js 2007-05-07 14:27:06 UTC (rev 674)
@@ -6,12 +6,17 @@
if (navigator.userAgent.toLowerCase().indexOf("msie") >= 0 ||
navigator.userAgent.toLowerCase().indexOf("explorer") >= 0)
return "MSIE";
- if (navigator.userAgent.toLowerCase().indexOf("firefox") >= 0)
+ if (navigator.userAgent.toLowerCase().indexOf("firefox") >= 0 ||
+ navigator.userAgent.toLowerCase().indexOf("iceweasel") >= 0)
return "FF";
if (navigator.userAgent.toLowerCase().indexOf("opera") >= 0)
return "OPERA";
if (navigator.userAgent.toLowerCase().indexOf("netscape") >= 0)
return "NETSCAPE";
+ if (navigator.userAgent.toLowerCase().indexOf("safari") >= 0)
+ return "SAFARI";
+ if (navigator.userAgent.toLowerCase().indexOf("konqueror") >= 0)
+ return "KONQUEROR";
return "OTHER";
}
17 years, 7 months
JBoss Rich Faces SVN: r673 - trunk/docs/userguide/en/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-05-07 10:06:02 -0400 (Mon, 07 May 2007)
New Revision: 673
Modified:
trunk/docs/userguide/en/included/dropDownMenu.desc.xml
trunk/docs/userguide/en/included/dropDownMenu.xml
trunk/docs/userguide/en/included/menuGroup.desc.xml
trunk/docs/userguide/en/included/menuItem.xml
Log:
Modified: trunk/docs/userguide/en/included/dropDownMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.desc.xml 2007-05-07 13:39:27 UTC (rev 672)
+++ trunk/docs/userguide/en/included/dropDownMenu.desc.xml 2007-05-07 14:06:02 UTC (rev 673)
@@ -9,9 +9,9 @@
<para>The <rich:dropDownMenu> component is used for creation multilevel dropdown menu.</para>
<figure>
<title><rich:dropDownMenu> component</title>
- - <mediaobject>
- - <imageobject>
- <imagedata fileref="images/dropDownMenu1.gif" />
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/dropDownMenu1.png" />
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.xml 2007-05-07 13:39:27 UTC (rev 672)
+++ trunk/docs/userguide/en/included/dropDownMenu.xml 2007-05-07 14:06:02 UTC (rev 673)
@@ -102,7 +102,7 @@
</para>
<itemizedlist>
<listitem><para>Server (on default)</para></listitem>
- </itemizedlist>
+ </itemizedlist>
<para>
The common submission of the form is performed and a page is completely refreshed.
</para>
@@ -116,7 +116,7 @@
<listitem><para>None</para></listitem>
</itemizedlist>
<para>
- "action" and "actionListener" item's attributes are ignored. Menu Items don't fire any submits itself. Behavior is fully defined by the components nested to items.
+ The"action" and "actionListener" item's attributes are ignored. Menu items don't fire any submits itself. Behavior is fully defined by the components nested to items.
</para>
<note><title>Note:</title>
As the <rich:dropDownMenu> component do not provide own form use it in <form>…</h:form>.
@@ -163,7 +163,7 @@
As a result:
</para>
<figure>
- <title>Using the "direction" and "joinPoint" attributes</title>
+ <title>Using the "direction" and "joinPoint" attributes</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dropDownMenu2.png" />
@@ -190,7 +190,7 @@
</para>
<figure>
<title>Using the "horizontalOffset" and "verticalOffset" attributes</title>
- <mediaobject>
+ <mediaobject>
<imageobject>
<imagedata fileref="images/dropDownMenu3.png" />
</imageobject>
@@ -310,11 +310,14 @@
<para>
On the screenshot, there are classes' names that define element label.
</para>
+ <figure>
+ <title>Classes' names</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dropDownMenu4.png" />
</imageobject>
- </mediaobject>
+ </mediaobject>
+ </figure>
<table>
<title>Classes' names that define element label</title>
<tgroup cols="2">
@@ -347,11 +350,14 @@
<para>
On the screenshot, there are classes' names that define element popup.
</para>
+ <figure>
+ <title>Classes' names</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dropDownMenu5.gif" />
+ <imagedata fileref="images/dropDownMenu5.png" />
</imageobject>
- </mediaobject>
+ </mediaobject>
+ </figure>
<table>
<title>Classes' names that define element popup</title>
<tgroup cols="2">
@@ -374,10 +380,10 @@
</tgroup>
</table>
<para>
- In order to redefine style for all <dropDownMenus> on the page with using CSS it's enough to create classes with the same names and define in its necessary properties.
+ In order to redefine style for all menus on the page with using CSS it's enough to create classes with the same names and define in its necessary properties.
</para>
<para>
- To change style peculiarities of the particular <dropDownMenus> define your own style classes in the corresponding simple toggle panels attributes.
+ To change style peculiarities of the particular menus define your own style classes in the corresponding simple toggle panels attributes.
</para>
</section>
</section>
Modified: trunk/docs/userguide/en/included/menuGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/menuGroup.desc.xml 2007-05-07 13:39:27 UTC (rev 672)
+++ trunk/docs/userguide/en/included/menuGroup.desc.xml 2007-05-07 14:06:02 UTC (rev 673)
@@ -9,8 +9,8 @@
<para>The <rich:menuGroup> component is used for definition an expandable group of items inside of popup list or another group.</para>
<figure>
<title><rich:menuGroup> component</title>
- - <mediaobject>
- - <imageobject>
+ <mediaobject>
+ <imageobject>
<imagedata fileref="images/menuGroup1.png" />
</imageobject>
</mediaobject>
Modified: trunk/docs/userguide/en/included/menuItem.xml
===================================================================
--- trunk/docs/userguide/en/included/menuItem.xml 2007-05-07 13:39:27 UTC (rev 672)
+++ trunk/docs/userguide/en/included/menuItem.xml 2007-05-07 14:06:02 UTC (rev 673)
@@ -70,10 +70,10 @@
<section>
<title>Details of Usage</title>
<para>
- The "Value" attribute defines representation text for the item element.
+ The "value" attribute defines representation text for the item element.
</para>
<para>
- The "Icon" attribute defines icon. The "IconDisabled" attribute defines icon for disabled item. Also you can use the "Icon" and "IconDisabled" facets. If the facets are defined, corresponding of the "Icon" and "IconDisabled" attributes are ignored and facets content is shown as icon. You can use it for realization checkboxes for items.
+ The "icon" attribute defines icon. The "iconDisabled" attribute defines icon for disabled item. Also you can use the "icon" and "iconDisabled" facets. If the facets are defined, corresponding of the "icon" and "iconDisabled" attributes are ignored and facets content is shown as icon. You can use it for realization checkboxes for items.
</para>
<para>
Example.
@@ -89,7 +89,7 @@
</programlisting>
<para>
- Switching mode could be chosen with the <rich: menuItem> attribute "Mode" with three possible parameters.
+ Switching mode could be chosen with the <rich: menuItem> attribute "mode" with three possible parameters.
</para>
<itemizedlist>
<listitem><para>Server (on default)</para></listitem>
@@ -107,10 +107,10 @@
<listitem><para>None</para></listitem>
</itemizedlist>
<para>
- "Action" and "ActionListener" item's attributes are ignored. Menu Items don't fire any submits itself. Behavior is fully defined by the components nested to items.
+ The "action" and "actionListener" item's attributes are ignored. Menu items don't fire any submits itself. Behavior is fully defined by the components nested to items.
</para>
<para>
- For example you can put any content into the item. In this case you should set the "Mode" attribute as "none".
+ For example, you can put any content into the item. In this case you should set the "mode" attribute as "none".
</para>
<para>
Example.
@@ -129,7 +129,7 @@
]]>
</programlisting>
<para>
- You can use "Disabled" attribute to set item's state.
+ You can use "disabled" attribute to set item's state.
</para>
<para>
Example.
17 years, 7 months
JBoss Rich Faces SVN: r672 - trunk/docs/resources.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-05-07 09:39:27 -0400 (Mon, 07 May 2007)
New Revision: 672
Removed:
trunk/docs/resources/styles/
trunk/docs/resources/support/
Log:
17 years, 7 months
JBoss Rich Faces SVN: r671 - trunk/docs/userguide/en.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-05-07 09:35:49 -0400 (Mon, 07 May 2007)
New Revision: 671
Modified:
trunk/docs/userguide/en/master.xml
Log:
Modified: trunk/docs/userguide/en/master.xml
===================================================================
--- trunk/docs/userguide/en/master.xml 2007-05-07 13:35:11 UTC (rev 670)
+++ trunk/docs/userguide/en/master.xml 2007-05-07 13:35:49 UTC (rev 671)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
-"../../../..//jbosstools/trunk/documentation/resources/support/docbook-dtd/docbookx.dtd"
+"../../../../jbosstools/trunk/documentation/resources/support/docbook-dtd/docbookx.dtd"
[ <!ENTITY rfcintro SYSTEM "modules/rfcintro.xml">
<!ENTITY rfcdocumentroadmap SYSTEM "modules/rfcdocumentroadmap.xml">
<!ENTITY rfctechreqs SYSTEM "modules/rfctechreqs.xml">
@@ -28,6 +28,8 @@
<!ENTITY togglePanel_table SYSTEM "../../build/generated/en/togglePanel_table.xml">
<!ENTITY toolBar_table SYSTEM "../../build/generated/en/toolBar_table.xml">
<!ENTITY tree_table SYSTEM "../../build/generated/en/tree_table.xml">
+<!ENTITY dropDownMenu_table SYSTEM "../../build/generated/en/dropdown-menu_table.xml">
+<!ENTITY menuComponents_table SYSTEM "../../build/generated/en/menu-components_table.xml">
<!ENTITY rfcidesupport SYSTEM "modules/rfcidesupport.xml">
<!ENTITY rfclinks SYSTEM "modules/rfclinks.xml">
@@ -73,7 +75,9 @@
&togglePanel_table;
&toolBar_table;
&tree_table;
-
+&dropDownMenu_table;
+&menuComponents_table;
+
</chapter>
&rfcidesupport;
17 years, 7 months
JBoss Rich Faces SVN: r670 - trunk/docs/userguide/en/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-05-07 09:35:11 -0400 (Mon, 07 May 2007)
New Revision: 670
Added:
trunk/docs/userguide/en/included/dropDownMenu.desc.xml
trunk/docs/userguide/en/included/dropDownMenu.xml
trunk/docs/userguide/en/included/menuGroup.desc.xml
trunk/docs/userguide/en/included/menuGroup.xml
trunk/docs/userguide/en/included/menuItem.desc.xml
trunk/docs/userguide/en/included/menuItem.xml
trunk/docs/userguide/en/included/menuSeparator.desc.xml
trunk/docs/userguide/en/included/menuSeparator.xml
Log:
Added: trunk/docs/userguide/en/included/dropDownMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.desc.xml (rev 0)
+++ trunk/docs/userguide/en/included/dropDownMenu.desc.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ - <keywordset>
+ <keyword>dropDownMenu</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <para>The <rich:dropDownMenu> component is used for creation multilevel dropdown menu.</para>
+ <figure>
+ <title><rich:dropDownMenu> component</title>
+ - <mediaobject>
+ - <imageobject>
+ <imagedata fileref="images/dropDownMenu1.gif" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+<section>
+ <title>Key Features</title>
+ <itemizedlist>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Popup appearance event customization</para></listitem>
+ <listitem><para>Different submission modes</para></listitem>
+ <listitem><para>Possibility of definition of complex representation elements</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
+ <listitem><para>Smart and user defined positioning </para></listitem>
+ </itemizedlist>
+
+</section>
+
+</section>
\ No newline at end of file
Added: trunk/docs/userguide/en/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/included/dropDownMenu.xml (rev 0)
+++ trunk/docs/userguide/en/included/dropDownMenu.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,384 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>dropDownMenu</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <table>
+ <title>Component identification parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.richfaces.DropDownMenu</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>org.richfaces.component.html.HtmlDropDownMenu</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>org.richfaces.DropDownMenu</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.richfaces.DropDownMenuRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+ <entry>org.richfaces.taglib.DropDownMenuTag</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <section>
+ <title>Creation on a page</title>
+ <para>To create the simplest variant on a page use the following syntax:</para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu value="Item1">
+ <!—Nested menu components-->
+ </rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Dynamical Creation from Java Code</title>
+ <programlisting role="java">
+ <![CDATA[
+ ...
+ org.richfaces.component.html.HtmlDropDownMenu myMenu = new org.richfaces.component.html.HtmlDropDownMenu();
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Details of Usage</title>
+ <para>
+ All attributes except the "value" are not required. The "value" attribute defines representation text.
+ </para>
+ <para>
+ Also instead of "value" attribute you can use "label" facet.
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <f:facet name="label">
+ <h:graphicImage value="/images/img1.gif"/>
+ </f:facet>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ Use "event" attribute to define the event on the representation element that triggers the menu's appearance. The example of appearance menu by click see below.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu event="onclick" value="Item1">
+ <!—Nested menu components-->
+ </rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ Switching mode could be chosen with the <rich:dropDownMenu> attribute "mode" with three possible parameters.
+ </para>
+ <itemizedlist>
+ <listitem><para>Server (on default)</para></listitem>
+ </itemizedlist>
+ <para>
+ The common submission of the form is performed and a page is completely refreshed.
+ </para>
+ <itemizedlist>
+ <listitem><para>Ajax</para></listitem>
+ </itemizedlist>
+ <para>
+ Ajax form submission is performed additionally specified elements in the "reRender" attribute are reRendered.
+ </para>
+ <itemizedlist>
+ <listitem><para>None</para></listitem>
+ </itemizedlist>
+ <para>
+ "action" and "actionListener" item's attributes are ignored. Menu Items don't fire any submits itself. Behavior is fully defined by the components nested to items.
+ </para>
+ <note><title>Note:</title>
+ As the <rich:dropDownMenu> component do not provide own form use it in <form>…</h:form>.
+ </note>
+ <para>
+ The "direction" and "jointPoint" attributes are used for the definition ways of menu's appearance as it's shown in the example below.
+ </para>
+ <para>
+ Possible values for the "direction" attribute are:
+ </para>
+ <itemizedlist>
+ <listitem><para>top-left – menu attached to top-right corner of the label;</para></listitem>
+ <listitem><para>top-right – menu attached to top-left corner of the label;</para></listitem>
+ <listitem><para>bottom-left – menu attached to bottom-right corner of the label;</para></listitem>
+ <listitem><para>bottom-right – menu attached to bottom-left corner of the label;</para></listitem>
+ <listitem><para>auto – smart positioning activated.</para></listitem>
+ </itemizedlist>
+ <para>
+ Possible values for the "jointPoint" attribute are:
+ </para>
+ <itemizedlist>
+ <listitem><para>tr – top-right point of the label element;</para></listitem>
+ <listitem><para>tl – top-left point of the label element;</para></listitem>
+ <listitem><para>br – bottom-right point of the label element;</para></listitem>
+ <listitem><para>bl – bottom-left point of the label element;</para></listitem>
+ <listitem><para>auto – smart positioning activated.</para></listitem>
+ </itemizedlist>
+ <para>
+ On default the "direction" and "jointPoint" attributes define as "auto".
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu value="Item1" direction="bottom-right" jointPoint="tr">
+ <!—Nested menu components-->
+ </rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ As a result:
+ </para>
+ <figure>
+ <title>Using the "direction" and "joinPoint" attributes</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/dropDownMenu2.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ You can correct an offset of the popup list relatively the label using following attributes: "horizontalOffset" and "verticalOffset".
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu value="Item1" direction="bottom-right" jointPoint="tr" horizontalOffset="-15" verticalOffset="0">
+ <!—Nested menu components-->
+ </rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ As a result:
+ </para>
+ <figure>
+ <title>Using the "horizontalOffset" and "verticalOffset" attributes</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/dropDownMenu3.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section>
+ <title> Look and Feel Customization</title>
+ <para>
+ Skin parameters redefinition:
+ </para>
+ <para>
+ For skinnability implementation the components uses style class redefinition method. Default style classes are mapped on skin parameters.
+ </para>
+ <para>
+ To redefine appearance of all dropDownMenus at once there are two ways:
+ </para>
+ <itemizedlist>
+ <listitem><para>Redefine corresponding skin parameters.</para></listitem>
+ <listitem><para>Add to user's stylesheets style classes used by panel.</para></listitem>
+ </itemizedlist>
+ <table>
+ <title>Label Skin parameters redefinition</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters for label div element</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>generalFamilyFont</entry>
+ <entry>font-family</entry>
+ </row>
+ <row>
+ <entry>generalSizeFont</entry>
+ <entry>font-size</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Label Skin parameters redefinition</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters for selected label element</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>panelBorderColor</entry>
+ <entry>border-color</entry>
+ </row>
+ <row>
+ <entry>controlBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ <row>
+ <entry>generalTextColor</entry>
+ <entry>background-colorcolor</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Popup Skin parameters redefinition</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters for border element</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>panelBorderColor</entry>
+ <entry>border-color</entry>
+ </row>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Popup Skin parameters redefinition</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters for background element</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+ <entry>border-top-color</entry>
+ </row>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+ <entry>border-left-color</entry>
+ </row>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+ <entry>border-right-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+ <section>
+ <title> Definition custom style classes </title>
+ <para>
+ On the screenshot, there are classes' names that define element label.
+ </para>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/dropDownMenu4.png" />
+ </imageobject>
+ </mediaobject>
+ <table>
+ <title>Classes' names that define element label</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>Rich-label-text-decor</entry>
+ <entry>Defines the text style of representation element</entry>
+ </row>
+ <row>
+ <entry>Rich-ddmenu-label</entry>
+ <entry>Defines the class for wrapping div element at representation element</entry>
+ </row>
+ <row>
+ <entry>Rich-ddmenu-label-select</entry>
+ <entry>Defines the class for wrapping div element at selected representation element</entry>
+ </row>
+ <row>
+ <entry>Rich-ddmenu-label-unselect</entry>
+ <entry>Defines the class for wrapping div element at not selected representation element</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
+ On the screenshot, there are classes' names that define element popup.
+ </para>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/dropDownMenu5.gif" />
+ </imageobject>
+ </mediaobject>
+ <table>
+ <title>Classes' names that define element popup</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>Rich-menu-list-border</entry>
+ <entry>Defines the class for elements of borders</entry>
+ </row>
+ <row>
+ <entry>Rich-menu-list-border</entry>
+ <entry>Defines the class for general background list</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <para>
+ In order to redefine style for all <dropDownMenus> on the page with using CSS it's enough to create classes with the same names and define in its necessary properties.
+ </para>
+ <para>
+ To change style peculiarities of the particular <dropDownMenus> define your own style classes in the corresponding simple toggle panels attributes.
+ </para>
+ </section>
+ </section>
+
Added: trunk/docs/userguide/en/included/menuGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/menuGroup.desc.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuGroup.desc.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ - <keywordset>
+ <keyword>menuGroup</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <para>The <rich:menuGroup> component is used for definition an expandable group of items inside of popup list or another group.</para>
+ <figure>
+ <title><rich:menuGroup> component</title>
+ - <mediaobject>
+ - <imageobject>
+ <imagedata fileref="images/menuGroup1.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+<section>
+ <title>Key Features</title>
+ <itemizedlist>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Grouping any menu's items set</para></listitem>
+ <listitem><para>Popup appearance event customization</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
+ <listitem><para>Smart and user defined positioning</para></listitem>
+ </itemizedlist>
+
+</section>
+
+</section>
\ No newline at end of file
Added: trunk/docs/userguide/en/included/menuGroup.xml
===================================================================
--- trunk/docs/userguide/en/included/menuGroup.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuGroup.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>menuGroup</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <table>
+ <title>Component identification parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.richfaces.MenuGroup</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>oorg.richfaces.component.html.HtmlMenuGroup</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>org.richfaces.DropDownMenu</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.richfaces.MenuGroupRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+ <entry>org.richfaces.taglib.MenuGroupTag</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <section>
+ <title>Creation on a page</title>
+ <para>To create the simplest variant on a page use the following syntax:</para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu value="Active">
+ ...
+ <rich: menuGroup value="Active">
+ <!—Nested menu components-->
+ </rich:menuGroup>
+ ...
+ </rich:dropDownMenu >
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Dynamical Creation from Java Code</title>
+ <programlisting role="java">
+ <![CDATA[
+ ...
+ org.richfaces.component.html.HtmlMenuGroup myGroup = new org.richfaces.component.html.HtmlMenuGroup ();
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Details of Usage</title>
+ <para>
+ The "value" attribute defines representation text of the group element on the page.
+ </para>
+ <para>
+ The "icon" attribute defines an icon. The "iconDisabled" attribute defines an icon for disabled group. Also you can use the "icon" and "iconDisabled" facets. If the facets are defined, corresponding of the "icon" and "iconDisabled" attributes are ignored and facets content is shown as icon. You can use it for realization checkboxes for groups.
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <f:facet name="icon">
+ <h:selectBooleanCheckbox value="#{bean.property}"/>
+ </f:facet>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ The "iconFolder" and "iconFolderDisabled" attributes are defined for using icons as folder icon. The "iconFolder" and "iconFolderDisabled" facets use content as folder icon representation.
+ </para>
+ <para>
+ The "direction" attribute is used for the definition ways of menu's appearance as it's shown in the example below.
+ </para>
+ <para>Possible values are:</para>
+ <itemizedlist>
+ <listitem><para>left – submenu attached to left side of the menu;</para></listitem>
+ <listitem><para>right – submenu attached to right side of the menu;</para></listitem>
+ <listitem><para>auto – smart positioning activated.</para></listitem>
+ </itemizedlist>
+ <para>
+ On default the "direction" attribute defines as "auto".
+ </para>
+ <para>
+
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:menuGroup value="Active" direction="left"
+ <!—Nested menu components-->
+ </rich:menuGroup>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ As a result:
+ </para>
+ <figure>
+ <title>Using the "direction" attribute</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/menuGroup2.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ </section>
Added: trunk/docs/userguide/en/included/menuItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/menuItem.desc.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuItem.desc.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>menuItem</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <para>The <rich:menuItem> component is used for definition the single item inside of popup list.</para>
+ <figure>
+ <title><rich:menuItem> component</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/menuItem1.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+<section>
+ <title>Key Features</title>
+ <itemizedlist>
+ <listitem><para>Highly customizable look and feel</para></listitem>
+ <listitem><para>Different submission modes</para></listitem>
+ <listitem><para>Disablement support</para></listitem>
+ <listitem><para>Custom content support</para></listitem>
+ </itemizedlist>
+
+</section>
+
+</section>
\ No newline at end of file
Added: trunk/docs/userguide/en/included/menuItem.xml
===================================================================
--- trunk/docs/userguide/en/included/menuItem.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuItem.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>menuItem</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <table>
+ <title>Component identification parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.richfaces.MenuItem</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>org.richfaces.component.html.HtmlMenuItem</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>org.richfaces.DropDownMenu</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.richfaces.MenuItemRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+ <entry>org.richfaces.taglib.MenuItemTag</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <section>
+ <title>Creation on a page</title>
+ <para>To create the simplest variant on a page use the following syntax:</para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu>
+ ...
+ <rich:menuItem value="Active"/>
+ ...
+ <rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Dynamical Creation from Java Code</title>
+ <programlisting role="java">
+ <![CDATA[
+ ...
+ org.richfaces.component.html.HtmlMenuItem myItem = new org.richfaces.component.html.HtmlMenuItem ();
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Details of Usage</title>
+ <para>
+ The "Value" attribute defines representation text for the item element.
+ </para>
+ <para>
+ The "Icon" attribute defines icon. The "IconDisabled" attribute defines icon for disabled item. Also you can use the "Icon" and "IconDisabled" facets. If the facets are defined, corresponding of the "Icon" and "IconDisabled" attributes are ignored and facets content is shown as icon. You can use it for realization checkboxes for items.
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <f:facet name="icon">
+ <h:selectBooleanCheckbox value="#{bean.property}"/>
+ </f:facet>
+ ...
+ ]]>
+ </programlisting>
+
+ <para>
+ Switching mode could be chosen with the <rich: menuItem> attribute "Mode" with three possible parameters.
+ </para>
+ <itemizedlist>
+ <listitem><para>Server (on default)</para></listitem>
+ </itemizedlist>
+ <para>
+ The common submission of the form is performed and a page is completely refreshed.
+ </para>
+ <itemizedlist>
+ <listitem><para>Ajax</para></listitem>
+ </itemizedlist>
+ <para>
+ Ajax form submission is performed additionally specified elements in the "reRender" attribute are reRendered.
+ </para>
+ <itemizedlist>
+ <listitem><para>None</para></listitem>
+ </itemizedlist>
+ <para>
+ "Action" and "ActionListener" item's attributes are ignored. Menu Items don't fire any submits itself. Behavior is fully defined by the components nested to items.
+ </para>
+ <para>
+ For example you can put any content into the item. In this case you should set the "Mode" attribute as "none".
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu>
+ ...
+ <rich:menuItem submitMode="none">
+ <h:outputLink value=”www.jboss.org”/>
+ </rich:menuItem>
+ ...
+ <rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ <para>
+ You can use "Disabled" attribute to set item's state.
+ </para>
+ <para>
+ Example.
+ </para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu>
+ <rich:menuItem value="Disable" disabled="true"/>
+ <rich:dropDownMenu>
+ ...
+ ]]>
+ </programlisting>
+ </section>
+ </section>
Added: trunk/docs/userguide/en/included/menuSeparator.desc.xml
===================================================================
--- trunk/docs/userguide/en/included/menuSeparator.desc.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuSeparator.desc.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>menuSeparator</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <para>The <rich:menuSeparator> component is used for definition horizontal separator that can be placed between groups or items.</para>
+ <figure>
+ <title><rich:menuSeparator></title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/menuSeparator1.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+</section>
\ No newline at end of file
Added: trunk/docs/userguide/en/included/menuSeparator.xml
===================================================================
--- trunk/docs/userguide/en/included/menuSeparator.xml (rev 0)
+++ trunk/docs/userguide/en/included/menuSeparator.xml 2007-05-07 13:35:11 UTC (rev 670)
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section>
+ <sectioninfo>
+ <keywordset>
+ <keyword>menuseparator</keyword>
+ </keywordset>
+ </sectioninfo>
+
+ <table>
+ <title>Component identification parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.richfaces.MenuSeparator</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>org.richfaces.component.html.HtmlMenuSeparator</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>org.richfaces.DropDownMenu</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.richfaces.MenuSeparatorRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+ <entry>org.richfaces.taglib.MenuSeparatorTag</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <section>
+ <title>Creation on a page</title>
+ <para>To create the simplest variant on a page use the following syntax:</para>
+ <programlisting role="xml">
+ <![CDATA[
+ ...
+ <rich:dropDownMenu/>
+ ...
+ <rich: menuSeparator/>
+ ...
+ <rich:dropDownMenu/>
+ ...
+ ]]>
+ </programlisting>
+ </section>
+
+ <section>
+ <title>Dynamical Creation from Java Code</title>
+ <programlisting role="java">
+ <![CDATA[
+ ...
+ org.richfaces.component.html.HtmlMenuSeparator mySep = new org.richfaces.component.html.HtmlMenuSeparator ();
+ ...
+ ]]>
+ </programlisting>
+ </section>
+</section>
17 years, 7 months
JBoss Rich Faces SVN: r669 - trunk/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-05-05 13:53:10 -0400 (Sat, 05 May 2007)
New Revision: 669
Modified:
trunk/richfaces/pom.xml
Log:
Modified: trunk/richfaces/pom.xml
===================================================================
--- trunk/richfaces/pom.xml 2007-05-05 17:41:20 UTC (rev 668)
+++ trunk/richfaces/pom.xml 2007-05-05 17:53:10 UTC (rev 669)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -104,33 +104,33 @@
</executions>
</plugin>
</plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>true</index>
- <manifest>
- <addDefaultSpecificationEntries>
- true
- </addDefaultSpecificationEntries>
- <addDefaultImplementationEntries>
- true
- </addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <mode>development</mode>
- <Build-Number>
- ${buildNumber}
- </Build-Number>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifest>
+ <addDefaultSpecificationEntries>
+ true
+ </addDefaultSpecificationEntries>
+ <addDefaultImplementationEntries>
+ true
+ </addDefaultImplementationEntries>
+ </manifest>
+ <manifestEntries>
+ <mode>development</mode>
+ <Build-Number>
+ ${buildNumber}
+ </Build-Number>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
<modules>
<module>common</module>
@@ -180,7 +180,7 @@
</snapshots>
<id>maven2-snapshots.jboss.org</id>
<name>Jboss Repository for Maven Snapshots</name>
- <url>http://maven.exadel.com/</url>
+ <url>http://snapshots.jboss.com/</url>
</repository>
</repositories>
<pluginRepositories>
@@ -193,7 +193,7 @@
</snapshots>
<id>maven2-snapshots.jboss.org</id>
<name>Jboss Repository for Maven Snapshots</name>
- <url>http://maven.exadel.com/</url>
+ <url>http://snapshots.jboss.com/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
@@ -302,14 +302,14 @@
<quiet>true</quiet>
</configuration>
</plugin>
- <!--
- <plugin>
- <artifactId>maven-checkstyle-plugin</artifactId>
- </plugin>
- --><!--
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- </plugin>
+ <!--
+ <plugin>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ </plugin>
+ --><!--
+ <plugin>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
-->
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
@@ -317,18 +317,18 @@
<aggregate>true</aggregate>
</configuration>
</plugin>
- <!--
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jdepend-maven-plugin</artifactId>
- </plugin>
- -->
- <!--
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>changelog-maven-plugin</artifactId>
- </plugin>
+ <!--
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
-->
+ <!--
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changelog-maven-plugin</artifactId>
+ </plugin>
+ -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
@@ -396,11 +396,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clover-plugin</artifactId>
- <!--
- <configuration>
- <licenseLocation>${clover.license.path}</licenseLocation>
- <jdk>1.5</jdk>
- </configuration>
+ <!--
+ <configuration>
+ <licenseLocation>${clover.license.path}</licenseLocation>
+ <jdk>1.5</jdk>
+ </configuration>
-->
</plugin>
</plugins>
17 years, 7 months
JBoss Rich Faces SVN: r668 - in trunk/richfaces: dataTable/src/main/config/component and 9 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-05-05 13:41:20 -0400 (Sat, 05 May 2007)
New Revision: 668
Modified:
trunk/richfaces/dataTable/src/main/config/component/dataGrid.xml
trunk/richfaces/dataTable/src/main/config/component/dataList.xml
trunk/richfaces/dataTable/src/main/config/component/dataTable.xml
trunk/richfaces/dataTable/src/main/config/component/subTable.xml
trunk/richfaces/datascroller/src/main/config/component/datascroller.xml
trunk/richfaces/drag-drop/src/main/config/component/dragSupport.xml
trunk/richfaces/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
trunk/richfaces/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
trunk/richfaces/panelbar/src/main/config/component/panelbar.xml
trunk/richfaces/pom.xml
trunk/richfaces/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml
trunk/richfaces/tabPanel/src/main/config/component/tabPanel.xml
trunk/richfaces/togglePanel/src/main/config/component/togglePanel.xml
trunk/richfaces/tree/src/main/config/component/tree.xml
Log:
Modified: trunk/richfaces/dataTable/src/main/config/component/dataGrid.xml
===================================================================
--- trunk/richfaces/dataTable/src/main/config/component/dataGrid.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/dataTable/src/main/config/component/dataGrid.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -110,6 +110,18 @@
</description>
</property>
<property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
<name>rowKey</name>
<classname>java.lang.String</classname>
<description>
@@ -167,5 +179,10 @@
<description>HTML: a script expression; a pointer is moved within of row.
</description>
</property>
+ <property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
</component>
</components>
Modified: trunk/richfaces/dataTable/src/main/config/component/dataList.xml
===================================================================
--- trunk/richfaces/dataTable/src/main/config/component/dataList.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/dataTable/src/main/config/component/dataList.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -47,6 +47,7 @@
<classname>java.lang.String</classname>
<description>RowKey is a representation of an identifier for a specific data row.</description>
</property>
+
<property>
<name>value</name>
<classname>java.lang.String</classname>
@@ -57,6 +58,23 @@
<classname>java.lang.String</classname>
<description>Attribute defines EL-variable for reference to visual state.</description>
</property>
+ <property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
<!--
<property>
<name>param</name>
@@ -113,6 +131,11 @@
<description>RowKey is a representation of an identifier for a specific data row.</description>
</property>
<property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
<name>value</name>
<classname>java.lang.String</classname>
<description>The current value for this component.</description>
@@ -122,6 +145,18 @@
<classname>java.lang.String</classname>
<description>Attribute defines EL-variable for reference to visual state.</description>
</property>
+ <property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
<!--
<property>
<name>param</name>
@@ -185,14 +220,31 @@
<description>RowKey is a representation of an identifier for a specific data row.</description>
</property>
<property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
<name>value</name>
<classname>java.lang.String</classname>
<description>The current value for this component.</description>
</property>
<property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a component state on the client side.</description>
+ </property>
+ <property>
<name>varState</name>
<classname>java.lang.String</classname>
<description>Attribute defines EL-variable for reference to visual state.</description>
</property>
+ <property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
+
+
</component>
</components>
Modified: trunk/richfaces/dataTable/src/main/config/component/dataTable.xml
===================================================================
--- trunk/richfaces/dataTable/src/main/config/component/dataTable.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/dataTable/src/main/config/component/dataTable.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -103,7 +103,13 @@
Attribute defines EL-variable for reference to visual state.
</description>
</property>
+
<property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
+ <property>
<name>rowKey</name>
<classname>java.lang.String</classname>
<description>
@@ -111,6 +117,18 @@
</description>
</property>
<property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
<name>value</name>
<classname>java.lang.String</classname>
<description>
Modified: trunk/richfaces/dataTable/src/main/config/component/subTable.xml
===================================================================
--- trunk/richfaces/dataTable/src/main/config/component/subTable.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/dataTable/src/main/config/component/subTable.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -50,6 +50,23 @@
</description>
</property>
<property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
+ <property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
<name>rowKey</name>
<classname>java.lang.String</classname>
<description>
Modified: trunk/richfaces/datascroller/src/main/config/component/datascroller.xml
===================================================================
--- trunk/richfaces/datascroller/src/main/config/component/datascroller.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/datascroller/src/main/config/component/datascroller.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -210,7 +210,7 @@
<property>
<name>ajaxSingle</name>
<classname>boolean</classname>
- <description>If ‘true’, submits ONLY one field/link, instead of all form controls.
+ <description>If "true", submits ONLY one field/link, instead of all form controls.
</description>
<defaultvalue>true</defaultvalue>
</property>
@@ -224,13 +224,17 @@
<property>
<name>align</name>
<classname>java.lang.String</classname>
- <description>
+ <description>
+ left|center|right [CI] Deprecated. This attribute specifies the position of the table with respect to the document. Permitted values: * left: The table is to the left of the document. * center: The table is to the center of the document. * right: The table is to the right of the document.
</description>
</property>
<property>
<name>boundaryControls</name>
<classname>java.lang.String</classname>
<description>
+Possible values are: "show" - default mode. Controls are visible always.
+"hide" - controls are hidden.
+"auto" - unnecessary controls are hidden.
</description>
<defaultvalue><![CDATA["show"]]></defaultvalue>
</property>
@@ -238,16 +242,31 @@
<name>fastControls</name>
<classname>java.lang.String</classname>
<description>
+Possible values are: "show" - default mode. Controls are visible always.
+"hide" - controls are hidden.
+"auto" - unnecessary controls are hidden.
</description>
<defaultvalue><![CDATA["show"]]></defaultvalue>
</property>
+
<property>
<name>stepControls</name>
<classname>java.lang.String</classname>
<description>
+Possible values are: "show" - default mode. Controls are visible always.
+"hide" - controls are hidden.
+"auto" - unnecessary controls are hidden.
</description>
+
<defaultvalue><![CDATA["show"]]></defaultvalue>
</property>
+
+ <property>
+ <name>actionExpression</name>
+ <classname>java.lang.String</classname>
+ <description>The action method binding expression.</description>
+ </property>
+
</component>
&listeners;
</components>
Modified: trunk/richfaces/drag-drop/src/main/config/component/dragSupport.xml
===================================================================
--- trunk/richfaces/drag-drop/src/main/config/component/dragSupport.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/drag-drop/src/main/config/component/dragSupport.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -40,7 +40,7 @@
<defaultvalue>"default"</defaultvalue>
</property>
-->
- <property>
+ <property attachedstate="true">
<name>dragListener</name>
<classname>javax.faces.el.MethodBinding</classname>
<description>
Modified: trunk/richfaces/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
===================================================================
--- trunk/richfaces/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -197,6 +197,27 @@
<description>A name of CSS class for the tool tip element.</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
+ <property>
+ <name>converterMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter.
+ </description>
+ </property>
+ <property>
+ <name>requiredMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used.
+ </description>
+ </property>
+ <property>
+ <name>validatorMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validator message, replacing any message that comes from the validator.
+ </description>
+ </property>
&ui_component_attributes;
&html_input_attributes;
&html_input_events;
Modified: trunk/richfaces/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
===================================================================
--- trunk/richfaces/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -37,6 +37,27 @@
</test>
</tag>
+ <property>
+ <name>converterMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter.
+ </description>
+ </property>
+ <property>
+ <name>requiredMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used.
+ </description>
+ </property>
+ <property>
+ <name>validatorMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validator message, replacing any message that comes from the validator.
+ </description>
+ </property>
<property>
<name>minValue</name>
<classname>java.lang.String</classname>
Modified: trunk/richfaces/panelbar/src/main/config/component/panelbar.xml
===================================================================
--- trunk/richfaces/panelbar/src/main/config/component/panelbar.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/panelbar/src/main/config/component/panelbar.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -29,7 +29,27 @@
org.ajax4jsf.framework.taglib.HtmlComponentTagBase
</superclass>
</tag>
-
+ <property>
+ <name>converterMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter.
+ </description>
+ </property>
+ <property>
+ <name>requiredMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used.
+ </description>
+ </property>
+ <property>
+ <name>validatorMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validator message, replacing any message that comes from the validator.
+ </description>
+ </property>
<property>
<name>width</name>
<classname>java.lang.String</classname>
Modified: trunk/richfaces/pom.xml
===================================================================
--- trunk/richfaces/pom.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/pom.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -180,7 +180,7 @@
</snapshots>
<id>maven2-snapshots.jboss.org</id>
<name>Jboss Repository for Maven Snapshots</name>
- <url>http://snapshots.jboss.com/</url>
+ <url>http://maven.exadel.com/</url>
</repository>
</repositories>
<pluginRepositories>
@@ -193,7 +193,7 @@
</snapshots>
<id>maven2-snapshots.jboss.org</id>
<name>Jboss Repository for Maven Snapshots</name>
- <url>http://snapshots.jboss.com/</url>
+ <url>http://maven.exadel.com/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
Modified: trunk/richfaces/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml
===================================================================
--- trunk/richfaces/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -43,7 +43,11 @@
</description>
<defaultvalue><![CDATA["100%"]]></defaultvalue>
</property>
-
+ <property>
+ <name>actionExpression</name>
+ <classname>java.lang.String</classname>
+ <description>The action method binding expression.</description>
+ </property>
<property>
<name>height</name>
<classname>java.lang.String</classname>
Modified: trunk/richfaces/tabPanel/src/main/config/component/tabPanel.xml
===================================================================
--- trunk/richfaces/tabPanel/src/main/config/component/tabPanel.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/tabPanel/src/main/config/component/tabPanel.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -28,7 +28,27 @@
org.ajax4jsf.framework.taglib.HtmlComponentTagBase
</superclass>
</tag>
-
+ <property>
+ <name>converterMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter.
+ </description>
+ </property>
+ <property>
+ <name>requiredMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used.
+ </description>
+ </property>
+ <property>
+ <name>validatorMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validator message, replacing any message that comes from the validator.
+ </description>
+ </property>
<property>
<name>width</name>
<classname>java.lang.String</classname>
@@ -142,6 +162,11 @@
<name>value</name>
<classname>java.lang.Object</classname>
</property>
+ <property>
+ <name>actionExpression</name>
+ <classname>java.lang.String</classname>
+ <description>The action method binding expression.</description>
+ </property>
<property>
<name>name</name>
<classname>java.lang.Object</classname>
Modified: trunk/richfaces/togglePanel/src/main/config/component/togglePanel.xml
===================================================================
--- trunk/richfaces/togglePanel/src/main/config/component/togglePanel.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/togglePanel/src/main/config/component/togglePanel.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -69,6 +69,27 @@
attribute
</description>
</property>
+ <property>
+ <name>converterMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the converter message, replacing any message that comes from the converter.
+ </description>
+ </property>
+ <property>
+ <name>requiredMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used.
+ </description>
+ </property>
+ <property>
+ <name>validatorMessage</name>
+ <classname>java.lang.String</classname>
+ <description>
+ A ValueExpression enabled attribute that, if present, will be used as the text of the validator message, replacing any message that comes from the validator.
+ </description>
+ </property>
<!--
<taghandler>
<classname>org.ajax4jsf.tag.TestHandler</classname>
@@ -161,8 +182,12 @@
</description>
</property>
+ <property>
+ <name>actionExpression</name>
+ <classname>java.lang.String</classname>
+ <description>The action method binding expression.</description>
+ </property>
-
<property>
<name>dir</name>
<classname>java.lang.String</classname>
Modified: trunk/richfaces/tree/src/main/config/component/tree.xml
===================================================================
--- trunk/richfaces/tree/src/main/config/component/tree.xml 2007-05-05 16:01:47 UTC (rev 667)
+++ trunk/richfaces/tree/src/main/config/component/tree.xml 2007-05-05 17:41:20 UTC (rev 668)
@@ -58,8 +58,24 @@
<classname>org.richfaces.component.preserve.TreeDataLocator</classname>
<description></description>
</property>
-
<property>
+ <name>stateVar</name>
+ <classname>java.lang.String</classname>
+ <description>
+ The attribute provides access to a component state on the client side.
+ </description>
+ </property>
+ <property>
+ <name>rowKeyVar</name>
+ <classname>java.lang.String</classname>
+ <description>The attribute provides access to a row key in a Request scope.</description>
+ </property>
+ <property>
+ <name>componentState</name>
+ <classname>java.lang.String</classname>
+ <description>It defines EL-binding for a component state for saving or redefinition.</description>
+ </property>
+ <property>
<name>nodeFace</name>
<classname>java.lang.String</classname>
<description>Node face facet name</description>
17 years, 7 months
JBoss Rich Faces SVN: r667 - trunk/sandbox-samples/scrollable-grid-demo/src/main/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2007-05-05 12:01:47 -0400 (Sat, 05 May 2007)
New Revision: 667
Removed:
trunk/sandbox-samples/scrollable-grid-demo/src/main/java/org/richfaces/Bean.java
Log:
Deleted: trunk/sandbox-samples/scrollable-grid-demo/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/sandbox-samples/scrollable-grid-demo/src/main/java/org/richfaces/Bean.java 2007-05-05 16:01:38 UTC (rev 666)
+++ trunk/sandbox-samples/scrollable-grid-demo/src/main/java/org/richfaces/Bean.java 2007-05-05 16:01:47 UTC (rev 667)
@@ -1,29 +0,0 @@
-/**
- * License Agreement.
- *
- * Ajax4jsf 1.1 - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces;
-/**
- * @author $Autor$
- *
- */
-public class Bean {
-
-}
\ No newline at end of file
17 years, 7 months
JBoss Rich Faces SVN: r666 - trunk/sandbox-samples/scrollable-grid-demo/src/main/webapp/pages.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2007-05-05 12:01:38 -0400 (Sat, 05 May 2007)
New Revision: 666
Modified:
trunk/sandbox-samples/scrollable-grid-demo/src/main/webapp/pages/scrollable-grid.xhtml
Log:
Modified: trunk/sandbox-samples/scrollable-grid-demo/src/main/webapp/pages/scrollable-grid.xhtml
===================================================================
--- trunk/sandbox-samples/scrollable-grid-demo/src/main/webapp/pages/scrollable-grid.xhtml 2007-05-05 16:01:28 UTC (rev 665)
+++ trunk/sandbox-samples/scrollable-grid-demo/src/main/webapp/pages/scrollable-grid.xhtml 2007-05-05 16:01:38 UTC (rev 666)
@@ -34,19 +34,20 @@
<body>
- <sg:scrollable-grid>
+ <sg:scrollable-grid value="#{selectionBean.dataModel}" var="issues" id="grid">
+
<sg:column style="width: 200px" frozen="true">
<f:facet name="header">
- <h:outputText value="Column 1"></h:outputText>
+ <h:outputText value="Key"></h:outputText>
</f:facet>
<h:outputText value="Test1"></h:outputText>
<f:facet name="footer">
<h:outputText value="footer1"></h:outputText>
</f:facet>
</sg:column>
- <sg:column style="width: 200px" frozen="true">
+ <sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 2"></h:outputText>
+ <h:outputText value="Summary"></h:outputText>
</f:facet>
<h:outputText value="Test 2"></h:outputText>
<f:facet name="footer">
@@ -55,7 +56,7 @@
</sg:column>
<sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 3"></h:outputText>
+ <h:outputText value="Assignee"></h:outputText>
</f:facet>
<h:outputText value="Test3"></h:outputText>
<f:facet name="footer">
@@ -64,7 +65,7 @@
</sg:column>
<sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 4"></h:outputText>
+ <h:outputText value="Status"></h:outputText>
</f:facet>
<h:outputText value="Test4"></h:outputText>
<f:facet name="footer">
@@ -73,7 +74,7 @@
</sg:column>
<sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 5"></h:outputText>
+ <h:outputText value="Reporter"></h:outputText>
</f:facet>
<h:outputText value="Test5"></h:outputText>
<f:facet name="footer">
@@ -82,7 +83,7 @@
</sg:column>
<sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 6"></h:outputText>
+ <h:outputText value="Created"></h:outputText>
</f:facet>
<h:outputText value="Test6"></h:outputText>
<f:facet name="footer">
@@ -91,13 +92,22 @@
</sg:column>
<sg:column style="width: 200px">
<f:facet name="header">
- <h:outputText value="Column 7"></h:outputText>
+ <h:outputText value="Updated"></h:outputText>
</f:facet>
<h:outputText value="Test7"></h:outputText>
<f:facet name="footer">
<h:outputText value="footer7"></h:outputText>
</f:facet>
</sg:column>
- </sg:scrollable-grid>
+ <sg:column style="width: 200px">
+ <f:facet name="header">
+ <h:outputText value="Resolution"></h:outputText>
+ </f:facet>
+ <h:outputText value="Test8"></h:outputText>
+ <f:facet name="footer">
+ <h:outputText value="footer8"></h:outputText>
+ </f:facet>
+ </sg:column>
+ </sg:scrollable-grid>
</body>
</html>
\ No newline at end of file
17 years, 7 months