JBoss Rich Faces SVN: r2487 - trunk/ui/tabPanel/src/main/java/org/richfaces/taglib.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-08-24 14:58:45 -0400 (Fri, 24 Aug 2007)
New Revision: 2487
Modified:
trunk/ui/tabPanel/src/main/java/org/richfaces/taglib/TabPanelTagHandlerBase.java
Log:
value deprecation message added to TabPanelTagHandlerBase
Modified: trunk/ui/tabPanel/src/main/java/org/richfaces/taglib/TabPanelTagHandlerBase.java
===================================================================
--- trunk/ui/tabPanel/src/main/java/org/richfaces/taglib/TabPanelTagHandlerBase.java 2007-08-24 18:24:59 UTC (rev 2486)
+++ trunk/ui/tabPanel/src/main/java/org/richfaces/taglib/TabPanelTagHandlerBase.java 2007-08-24 18:58:45 UTC (rev 2487)
@@ -21,9 +21,13 @@
package org.richfaces.taglib;
+import javax.faces.context.FacesContext;
+
import org.ajax4jsf.webapp.taglib.AjaxComponentHandler;
import com.sun.facelets.tag.MetaRuleset;
+import com.sun.facelets.tag.TagAttribute;
+import com.sun.facelets.tag.TagAttributes;
import com.sun.facelets.tag.jsf.ComponentConfig;
/**
@@ -42,6 +46,15 @@
}
protected MetaRuleset createMetaRuleset(Class type) {
+ TagAttributes attributes = this.tag.getAttributes();
+ TagAttribute attribute = attributes.get("value");
+ if (attribute != null && attributes.get("selectedTab") != null) {
+ TagAttribute idAttribute = attributes.get("id");
+ FacesContext facesContext = FacesContext.getCurrentInstance();
+ facesContext.getExternalContext().log("selectedTab attribute has been already set for component with id: " +
+ idAttribute != null ? idAttribute.getValue() : null +
+ "[" + attribute.getValue() + "]. value attribute is deprecated and thus has been dropped!");
+ }
return super.createMetaRuleset(type).alias("selectedTab", "value");
}
18 years, 8 months
JBoss Rich Faces SVN: r2486 - trunk/docs/xslt/en/src/main/xslt.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-08-24 14:24:59 -0400 (Fri, 24 Aug 2007)
New Revision: 2486
Modified:
trunk/docs/xslt/en/src/main/xslt/html.xsl
trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl
Log:
fixed build error
Modified: trunk/docs/xslt/en/src/main/xslt/html.xsl
===================================================================
--- trunk/docs/xslt/en/src/main/xslt/html.xsl 2007-08-24 17:16:39 UTC (rev 2485)
+++ trunk/docs/xslt/en/src/main/xslt/html.xsl 2007-08-24 18:24:59 UTC (rev 2486)
@@ -1,88 +1,88 @@
-<?xml version="1.0"?>
-
-<!--
-
- This is the XSL HTML configuration file for the Hibernate
- Reference Documentation.
-
- It took me days to figure out this stuff and fix most of
- the obvious bugs in the DocBook XSL distribution. Some of
- the workarounds might not be appropriate with a newer version
- of DocBook XSL. This file is released as part of Hibernate,
- hence LGPL licensed.
-
- christian(a)hibernate.org
--->
-
-<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../support/docbook-xsl">
-]>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
+<?xml version="1.0"?>
+
+<!--
+
+ This is the XSL HTML configuration file for the Hibernate
+ Reference Documentation.
+
+ It took me days to figure out this stuff and fix most of
+ the obvious bugs in the DocBook XSL distribution. Some of
+ the workarounds might not be appropriate with a newer version
+ of DocBook XSL. This file is released as part of Hibernate,
+ hence LGPL licensed.
+
+ christian(a)hibernate.org
+-->
+
+<!DOCTYPE xsl:stylesheet [
+ <!ENTITY db_xsl_path "../support/docbook-xsl">
+]>
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0"
+ xmlns="http://www.w3.org/TR/xhtml1/transitional"
+ exclude-result-prefixes="#default">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
-<xsl:include href="./code-highlight.xsl"></xsl:include>
-
-<!--###################################################
- HTML Settings
- ################################################### -->
-
- <xsl:param name="html.stylesheet">css/html.css</xsl:param>
-
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <xsl:param name="callout.extensions">1</xsl:param>
- <xsl:param name="graphicsize.extension">0</xsl:param>
-
-<!--###################################################
- Table Of Contents
- ################################################### -->
-
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc">
- book toc
- </xsl:param>
-
- <!-- Show only Sections up to level 3 in the TOCs -->
- <xsl:param name="toc.section.depth">3</xsl:param>
-
-<!--###################################################
- Labels
- ################################################### -->
-
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
-<!--###################################################
- Callouts
- ################################################### -->
-
- <!-- Don't use graphics, use a simple number style -->
- <xsl:param name="callout.graphics">0</xsl:param>
-
- <!-- Place callout marks at this column in annotated areas -->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
-<!--###################################################
- Misc
- ################################################### -->
-
- <!-- Placement of titles -->
- <xsl:param name="formal.title.placement">
- figure after
- example before
- equation before
- table before
- procedure before
- </xsl:param>
- <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
+<!--xsl:include href="./code-highlight.xsl"></xsl:include-->
+
+<!--###################################################
+ HTML Settings
+ ################################################### -->
+
+ <xsl:param name="html.stylesheet">css/html.css</xsl:param>
+
+ <!-- These extensions are required for table printing and other stuff -->
+ <xsl:param name="use.extensions">1</xsl:param>
+ <xsl:param name="tablecolumns.extension">0</xsl:param>
+ <xsl:param name="callout.extensions">1</xsl:param>
+ <xsl:param name="graphicsize.extension">0</xsl:param>
+
+<!--###################################################
+ Table Of Contents
+ ################################################### -->
+
+ <!-- Generate the TOCs for named components only -->
+ <xsl:param name="generate.toc">
+ book toc
+ </xsl:param>
+
+ <!-- Show only Sections up to level 3 in the TOCs -->
+ <xsl:param name="toc.section.depth">3</xsl:param>
+
+<!--###################################################
+ Labels
+ ################################################### -->
+
+ <!-- Label Chapters and Sections (numbering) -->
+ <xsl:param name="chapter.autolabel">1</xsl:param>
+ <xsl:param name="section.autolabel" select="1"/>
+ <xsl:param name="section.label.includes.component.label" select="1"/>
+
+<!--###################################################
+ Callouts
+ ################################################### -->
+
+ <!-- Don't use graphics, use a simple number style -->
+ <xsl:param name="callout.graphics">0</xsl:param>
+
+ <!-- Place callout marks at this column in annotated areas -->
+ <xsl:param name="callout.defaultcolumn">90</xsl:param>
+
+<!--###################################################
+ Misc
+ ################################################### -->
+
+ <!-- Placement of titles -->
+ <xsl:param name="formal.title.placement">
+ figure after
+ example before
+ equation before
+ table before
+ procedure before
+ </xsl:param>
+ <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
<xsl:template match="chapter[@role = 'NotInToc']//section//*" mode="toc" />
-</xsl:stylesheet>
+</xsl:stylesheet>
Modified: trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl
===================================================================
--- trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl 2007-08-24 17:16:39 UTC (rev 2485)
+++ trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl 2007-08-24 18:24:59 UTC (rev 2486)
@@ -1,94 +1,94 @@
-<?xml version="1.0"?>
-
-<!--
-
- This is the XSL HTML configuration file for the Hibernate
- Reference Documentation.
-
- It took me days to figure out this stuff and fix most of
- the obvious bugs in the DocBook XSL distribution. Some of
- the workarounds might not be appropriate with a newer version
- of DocBook XSL. This file is released as part of Hibernate,
- hence LGPL licensed.
-
- christian(a)hibernate.org
--->
-
-<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../support/docbook-xsl">
-]>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns="http://www.w3.org/TR/xhtml1/transitional"
- exclude-result-prefixes="#default">
-
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
-
+<?xml version="1.0"?>
+
+<!--
+
+ This is the XSL HTML configuration file for the Hibernate
+ Reference Documentation.
+
+ It took me days to figure out this stuff and fix most of
+ the obvious bugs in the DocBook XSL distribution. Some of
+ the workarounds might not be appropriate with a newer version
+ of DocBook XSL. This file is released as part of Hibernate,
+ hence LGPL licensed.
+
+ christian(a)hibernate.org
+-->
+
+<!DOCTYPE xsl:stylesheet [
+ <!ENTITY db_xsl_path "../support/docbook-xsl">
+]>
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0"
+ xmlns="http://www.w3.org/TR/xhtml1/transitional"
+ exclude-result-prefixes="#default">
+
+<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
+
<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
-<xsl:include href="./code-highlight.xsl"></xsl:include>
-
-
-<!--###################################################
- HTML Settings
- ################################################### -->
-
- <xsl:param name="chunk.section.depth">'5'</xsl:param>
- <xsl:param name="use.id.as.filename">'1'</xsl:param>
- <xsl:param name="html.stylesheet">css/html.css</xsl:param>
-
- <!-- These extensions are required for table printing and other stuff -->
- <xsl:param name="use.extensions">1</xsl:param>
- <xsl:param name="tablecolumns.extension">0</xsl:param>
- <xsl:param name="callout.extensions">1</xsl:param>
- <xsl:param name="graphicsize.extension">0</xsl:param>
-
-<!--###################################################
- Table Of Contents
- ################################################### -->
-
- <!-- Generate the TOCs for named components only -->
- <xsl:param name="generate.toc">
- book toc
- </xsl:param>
-
- <!-- Show only Sections up to level 3 in the TOCs -->
- <xsl:param name="toc.section.depth">3</xsl:param>
-
-<!--###################################################
- Labels
- ################################################### -->
-
- <!-- Label Chapters and Sections (numbering) -->
- <xsl:param name="chapter.autolabel">1</xsl:param>
- <xsl:param name="section.autolabel" select="1"/>
- <xsl:param name="section.label.includes.component.label" select="1"/>
-
-<!--###################################################
- Callouts
- ################################################### -->
-
- <!-- Don't use graphics, use a simple number style -->
- <xsl:param name="callout.graphics">0</xsl:param>
-
- <!-- Place callout marks at this column in annotated areas -->
- <xsl:param name="callout.defaultcolumn">90</xsl:param>
-
-<!--###################################################
- Misc
- ################################################### -->
-
- <!-- Placement of titles -->
- <xsl:param name="formal.title.placement">
- figure after
- example before
- equation before
- table before
- procedure before
- </xsl:param>
- <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
+<!--xsl:include href="./code-highlight.xsl"></xsl:include-->
+
+
+<!--###################################################
+ HTML Settings
+ ################################################### -->
+
+ <xsl:param name="chunk.section.depth">'5'</xsl:param>
+ <xsl:param name="use.id.as.filename">'1'</xsl:param>
+ <xsl:param name="html.stylesheet">css/html.css</xsl:param>
+
+ <!-- These extensions are required for table printing and other stuff -->
+ <xsl:param name="use.extensions">1</xsl:param>
+ <xsl:param name="tablecolumns.extension">0</xsl:param>
+ <xsl:param name="callout.extensions">1</xsl:param>
+ <xsl:param name="graphicsize.extension">0</xsl:param>
+
+<!--###################################################
+ Table Of Contents
+ ################################################### -->
+
+ <!-- Generate the TOCs for named components only -->
+ <xsl:param name="generate.toc">
+ book toc
+ </xsl:param>
+
+ <!-- Show only Sections up to level 3 in the TOCs -->
+ <xsl:param name="toc.section.depth">3</xsl:param>
+
+<!--###################################################
+ Labels
+ ################################################### -->
+
+ <!-- Label Chapters and Sections (numbering) -->
+ <xsl:param name="chapter.autolabel">1</xsl:param>
+ <xsl:param name="section.autolabel" select="1"/>
+ <xsl:param name="section.label.includes.component.label" select="1"/>
+
+<!--###################################################
+ Callouts
+ ################################################### -->
+
+ <!-- Don't use graphics, use a simple number style -->
+ <xsl:param name="callout.graphics">0</xsl:param>
+
+ <!-- Place callout marks at this column in annotated areas -->
+ <xsl:param name="callout.defaultcolumn">90</xsl:param>
+
+<!--###################################################
+ Misc
+ ################################################### -->
+
+ <!-- Placement of titles -->
+ <xsl:param name="formal.title.placement">
+ figure after
+ example before
+ equation before
+ table before
+ procedure before
+ </xsl:param>
+ <xsl:template match="section[@role = 'NotInToc']//*" mode="toc" />
<xsl:template match="chapter[@role = 'NotInToc']//section//*" mode="toc" />
<xsl:template match="book" mode="object.title.markup"/>
-
-</xsl:stylesheet>
+
+</xsl:stylesheet>
18 years, 8 months
JBoss Rich Faces SVN: r2485 - trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2007-08-24 13:16:39 -0400 (Fri, 24 Aug 2007)
New Revision: 2485
Modified:
trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js
Log:
RF-661
Modified: trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js
===================================================================
--- trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js 2007-08-24 16:08:59 UTC (rev 2484)
+++ trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js 2007-08-24 17:16:39 UTC (rev 2485)
@@ -181,7 +181,6 @@
this.rowsCount = Math.min(templNormal.rows.length, this.grid.dataModel.getCount());
- this.defaultRowHeight = this._calcDefaultRowHeight();
//if(ClientUILib.isGecko) {
// this.defaultRowHeight -= this.getBorderWidth("tb") + this.getPadding("tb");
//}
@@ -242,9 +241,8 @@
this.contentBox.moveTo(frozenContentWidth, 0);
this.sizeBox.moveTo(0, 0);
this.sizeBox.setWidth(totalWidth);
+ this.defaultRowHeight = this._calcDefaultRowHeight();
this.sizeBox.setHeight(this.defaultRowHeight * this.grid.dataModel.getCount() + fixH);
- this.helpObject1.moveToY(this.sizeBox.getHeight()+ this.defaultRowHeight + 5);
- this.helpObject2.moveToY(this.sizeBox.getHeight()+ this.defaultRowHeight + 5);
this.scrollBox.setWidth(this.getWidth()+1);
this.scrollBox.setHeight(this.getHeight()+1);
@@ -267,6 +265,11 @@
this.frozenContentBox.setHeight(height - fixH);
this.container.setHeight(height - fixH);
+ this.defaultRowHeight = this._calcDefaultRowHeight();
+ this.sizeBox.setHeight(this.defaultRowHeight * this.grid.dataModel.getCount() + fixH);
+ this.helpObject1.moveToY(this.sizeBox.getHeight()+ this.defaultRowHeight + 5);
+ this.helpObject2.moveToY(this.sizeBox.getHeight()+ this.defaultRowHeight + 5);
+
var scrollPos = Math.min(totalWidth - viewWidth, scrollLeft);
this.grid.adjustScrollPosition(scrollPos);
18 years, 8 months
JBoss Rich Faces SVN: r2484 - trunk/ui/calendar/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: afedosik
Date: 2007-08-24 12:08:59 -0400 (Fri, 24 Aug 2007)
New Revision: 2484
Modified:
trunk/ui/calendar/src/main/config/component/calendar.xml
Log:
http://jira.jboss.com/jira/browse/RF-696
Modified: trunk/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 15:24:14 UTC (rev 2483)
+++ trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 16:08:59 UTC (rev 2484)
@@ -111,7 +111,7 @@
<property>
<name>jointPoint</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Set the corner of the button for the popup to be connected with (top-left, top-right, bottom-left, bottom-right, auto)</description>
<defaultvalue>"bottom-left"</defaultvalue>
</property>
<property>
@@ -124,7 +124,7 @@
<property>
<name>weekDayLabels</name>
<classname>java.lang.Object</classname>
- <description></description>
+ <description>List of the day names displays on the days bar in the following way "Sun, Mon, Tue, Wed, …"</description>
</property>
<property>
<name>weekDayLabelsShort</name>
18 years, 8 months
JBoss Rich Faces SVN: r2483 - in trunk/docs: xslt/en/src/main/xslt and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-08-24 11:24:14 -0400 (Fri, 24 Aug 2007)
New Revision: 2483
Modified:
trunk/docs/pom.xml
trunk/docs/xslt/en/src/main/xslt/html.xsl
trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl
Log:
http://jira.jboss.com/jira/browse/RHDS-149?rc=1
Modified: trunk/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2007-08-24 14:59:02 UTC (rev 2482)
+++ trunk/docs/pom.xml 2007-08-24 15:24:14 UTC (rev 2483)
@@ -66,6 +66,14 @@
<layout>default</layout>
</pluginRepository>
</pluginRepositories>
+ <dependencies>
+ <dependency>
+ <groupId>com.uwyn</groupId>
+ <artifactId>jhighlight</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+
<modules>
<module>xslt</module>
Modified: trunk/docs/xslt/en/src/main/xslt/html.xsl
===================================================================
--- trunk/docs/xslt/en/src/main/xslt/html.xsl 2007-08-24 14:59:02 UTC (rev 2482)
+++ trunk/docs/xslt/en/src/main/xslt/html.xsl 2007-08-24 15:24:14 UTC (rev 2483)
@@ -25,6 +25,7 @@
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
+<xsl:include href="./code-highlight.xsl"></xsl:include>
<!--###################################################
HTML Settings
Modified: trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl
===================================================================
--- trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl 2007-08-24 14:59:02 UTC (rev 2482)
+++ trunk/docs/xslt/en/src/main/xslt/html_chunk.xsl 2007-08-24 15:24:14 UTC (rev 2483)
@@ -25,7 +25,9 @@
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
-<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
+<xsl:include href="./collapsing-navigation.xsl"></xsl:include>
+
+<xsl:include href="./code-highlight.xsl"></xsl:include>
<!--###################################################
18 years, 8 months
JBoss Rich Faces SVN: r2482 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: effect and 5 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-08-24 10:59:02 -0400 (Fri, 24 Aug 2007)
New Revision: 2482
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/effect/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/mediaOutput/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/usage.xhtml
Log:
http://jira.jboss.com/jira/browse/RF-524
the language is checked
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -10,9 +10,9 @@
<p>
rich:calendar allows to select the date using monthly calendar elements on pages.
- It is possoble to use the component in popup and inline code. Calendar at popup mode
- initially renders as input for date and button on the right side to call popup.
- In case of inline mode, the monthly calendar is located on the page initially.
+ It is possible to use the component in a popup and inline code. At a popup mode Calendar
+ is initially rendered as input for date and button on the right side to call a popup.
+ In case of an inline mode, the monthly calendar is located on a page initially.
</p>
<div class="sample-container" >
@@ -24,22 +24,22 @@
</div>
<p>
- <b>locale</b> attribute define a Locale. The default value is set to the Locale of current page.
- The name of the month and week days names are depends of the Locale.
+ <b>locale</b> attribute is defined as a Locale. The default value is set to the Locale of the current page.
+ The name of the month and week days names depend of the Locale.
</p>
<p>
- <b>popup</b> attribute is a flag that direct the calendar mode. If true, the popup mode is used.
- Otherwize, the inline mode is set.
+ <b>popup</b> attribute is a flag that directs to the calendar mode. If true, the popup mode is used.
+ Otherwise, the inline mode is set.
</p>
<p>
- <b>showInput</b> attribute defines should the input field be rendered in popup mode. If
+ <b>showInput</b> attribute defines whether the input field should be rendered in a popup mode. If
set to false, only the button (calendar icon) appears on the page.
</p>
<p>
- <b>enableManualInput</b> attribute allows to input the date in the text field manually.
+ <b>enableManualInput</b> attribute allows to input the date in a text field manually.
The default value is false. It means a user can only select the date from the calendar element.
</p>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/effect/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/effect/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/effect/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -10,7 +10,7 @@
<p>rich:effect utilizes the set of effects provided by scriptaculous javascript library. It
allows to attach effects to JSF components and html tags. For the reference of the available
- effects and thier parameters see the scriptaculous documentation and wiki. Those are
+ effects and their parameters see the scriptaculous documentation and wiki. There are
some of many possible effects available out-of-the-box:
</p>
<div class="sample-container">
@@ -22,13 +22,13 @@
<p>
It is possible to use rich:effect in two modes:
<ul>
- <li>attached to the JSF components or html tags and triggered by particular event. Wiring
- effect with JSF components might be occurs on the server or client. Wiring with html tag is
+ <li>attached to the JSF components or html tags and triggered by a particular event. Wiring
+ effect with JSF components might occur on the server or the client. Wiring with html tag is
possible only on the client side</li>
- <li>invoking from the javascript code by effect name. During the rendering, rich:effect generates the javascript
- function with defined name. When the function is called, the effect is applied</li>
+ <li>invoking from the javascript code by an effect name. During the rendering, rich:effect generates the javascript
+ function with a defined name. When the function is called, the effect is applied</li>
</ul>
- Those a the typical variants of using:
+ Here are the typical variants of usage:
</p>
<div class="sample-container">
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -9,13 +9,13 @@
<ui:define name="sample">
- <p>a4j:include functionality is equal to the facelets' ui:include functionality, plus, enables the
- partial page navigation in Ajax mode. The standard JSF navigation rules are used to define the
+ <p>a4j:include functionality is equal to the facelets ui:include functionality, plus, it enables the
+ partial page navigation in an Ajax mode. The standard JSF navigation rules are used to define the
navigation between the view.
</p>
<p>
- <b>viewId</b> attribute specify the view id of the page that will be included. It should be
- the full context-relative path of the resource in order to use as from-view and to-view in the
+ <b>viewId</b> attribute specifies the view id of a page that will be included. It should be
+ a full context-relative path of the resource in order to use as from-view and to-view in the
JSF navigation cases.
</p>
@@ -46,12 +46,12 @@
<p>
The Ajax command component (button, link, jsFunction, etc) should be located inside the
- a4j:include in order to having a partial navigation. When the navigation
- performs, the part of the component tree content is replaced with the content of view given
- by navigation rule.
+ a4j:include in order to have a partial navigation. When the navigation is
+ performed, a part of the component tree content is replaced with the content of a view given
+ by a navigation rule.
</p>
<p> The content of the a4j:include is not isolated from the whole view. You can point to the other
- parts of of the view with reRender if you want to update them while you navigate inside the
+ parts of the view with reRender if you want to update them while you navigate inside the
a4j:include.
</p>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/mediaOutput/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/mediaOutput/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/mediaOutput/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -11,24 +11,24 @@
<p>a4j:mediaOutput allows to generate images, video, sounds and other binary
resources defined by a user on-the-fly.
</p>
- <p><b>createContent</b> attribute reference to the method that will be used
- for content creating. The method accept two parameters. The first parameter
- has an OutputStream type. It is a reference to the steam should be used for output.
- The second parameter is a reference to 'value' attribute of the component.
+ <p><b>createContent</b> attribute references to the method that will be used
+ for content creating. The method accepts two parameters. The first parameter
+ has an OutputStream type. It is a reference to the steam that should be used for output.
+ The second parameter is a reference to a 'value' attribute of the component.
</p>
<p>
- <b>value</b> attribute references to data can be used as a input data for content
+ <b>value</b> attribute references to data that can be used as a input data for a content
creator method. The data should be serializable because it is encoded to the URL
to the resource.
</p>
<p>
<b>mimeType</b> attribute defines the type of output content. It is used to define
- the corresponded type in the header of HTTP response.
+ the corresponded type in the header of an HTTP response.
</p>
<p>
<b>cacheable</b> attribute is a flag that defines the caching strategy. If 'cachable'
is set to false, the request will be cached. If it is set to true, it will be cached
- and the serialized value of 'value' attribute plays the role of cache key.
+ and the serialized value of 'value' attribute plays the role of a cache key.
</p>
<div class="sample-container" >
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -9,10 +9,10 @@
<ui:define name="sample">
- <p>RichFaces Modal Panel is a container that blocks the operation on the base page when the modal
+ <p>RichFaces Modal Panel is a container that blocks an operation on the base page when the modal
panel is shown.</p>
- <p>You can show the modal panel using the folowing javascript function: Richfaces.hideModalPanel(id, params).
- For example, this line code invoke the modal panel:
+ <p>You can show the modal panel using the following javascript function: Richfaces.hideModalPanel(id, params).
+ For example, this line code invokes the modal panel:
<a href="javascript:Richfaces.showModalPanel('mp',{width:450, top:200})">
Richfaces.showModalPanel('mp',{width:450, top:200})</a></p>
<div class="sample-container">
@@ -24,12 +24,12 @@
</ui:include>
</div>
- <p>The modal panel has absolute layout. Absolutly, no reason to put in on the page
- where it is called. If modal panel has a form element, it should have it own form.
- In this case, it must be declired outside of the other form on the same page.
- I.e. nested form are not allowed.<br/>
- Those requirements apply because due to the bug of earlier Interner Expolrer versions,
- the dialog are moved to the top of the browser DOM tree just after it is rendered.</p>
+ <p>The modal panel has an absolute layout.There is no reason to put in on the page
+ where it is called.If you want to perform submits from this modal panel, you should have a separate form inside it.
+ In this case, the panel must be declared outside of the other form on the same page.
+ I.e. nested forms are not allowed.<br/>
+ Those requirements are applied because of the bug in earlier Internet Explorer versions, as
+ the dialog is moved to the top of the browser DOM tree just after it is rendered.</p>
</ui:define>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -8,23 +8,23 @@
<ui:composition template="/templates/component-sample.xhtml">
<ui:define name="sample">
<p>
- Toggle Panel renders sequence of states, tha can be switched (toggled) by
+ Toggle Panel renders sequence of states that can be switched (toggled) by a
component called Toggle Control. rich:togglePanel has no default appearance.
You can define it using the set of facets with any given content inside.
</p>
<p>
- <b>switchType</b> attribute define the strategy of switching. The possible values for this attributes
+ <b>switchType</b> attribute defines the strategy of switching. The possible values for this attributes
are:
<ul>
<li>client - switching happens on the client without any request to the server.
The jsf form is not required in this mode</li>
- <li>ajax - when state are switched, the content of new states comes from the server in Ajax way.</li>
+ <li>ajax - when states are switched, the content of new states comes from the server in Ajax way.</li>
<li>server - the whole page is reloaded when states are switched</li>
</ul>
</p>
<p>
- <b>stateOrder</b> attribute defines the order of the states if "switchToState" attribute of
- rich:toggleControl. The following example shows tips panel having one closed state and
+ <b>stateOrder</b> attribute defines the order of the states, if "switchToState" isn't explicitly defined on the
+ rich:toggleControl. The following example shows tips panel that has one closed state and
three states for tips.
</p>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/usage.xhtml 2007-08-24 14:53:16 UTC (rev 2481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/usage.xhtml 2007-08-24 14:59:02 UTC (rev 2482)
@@ -9,14 +9,14 @@
<ui:define name="sample">
<p>
- ToolTip is a little non-modal pop-up that may be used to display additional information, that normally hidden.<br/>
+ ToolTip is a little non-modal pop-up that could be used to display additional information, that is usually hidden.<br/>
Major toolTip features:
</p>
<ul>
- <li>Tool-tip content may be <b>pre-rendered</b> on page (client mode) or <b>loaded in separate Ajax request</b> (ajax mode)</li>
- <li>In "ajax" mode <b>default content</b> may be shown while request is executed</li>
- <li>Parameters can be passed to server during ajax reques</li>
+ <li>Tool-tip content may be <b>pre-rendered</b> on a page (client mode) or <b>loaded on separate Ajax request</b> (ajax mode)</li>
+ <li>In "ajax" mode <b>default content</b> could be shown while request is executed</li>
+ <li>Parameters can be passed to the server during an ajax request</li>
<li>Tooltip <b>look is fully customizable</b> using both - Richfaces skins and CSS style classes</li>
</ul>
18 years, 8 months
JBoss Rich Faces SVN: r2481 - trunk/ui/calendar/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: afedosik
Date: 2007-08-24 10:53:16 -0400 (Fri, 24 Aug 2007)
New Revision: 2481
Modified:
trunk/ui/calendar/src/main/config/component/calendar.xml
Log:
http://jira.jboss.com/jira/browse/RF-696 Calendar attributes table
Modified: trunk/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 14:52:44 UTC (rev 2480)
+++ trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 14:53:16 UTC (rev 2481)
@@ -190,7 +190,13 @@
<name>inputClass</name>
<classname>java.lang.String</classname>
<description></description>
- </property>
+ </property>
+ <property>
+ <name>zindex</name>
+ <classname>int</classname>
+ <description>Attribute is similar to the standard HTML attribute and can specify window placement relative to the content</description>
+ <defaultvalue>3</defaultvalue>
+ </property>
</component>
18 years, 8 months
JBoss Rich Faces SVN: r2480 - in trunk: samples/calendar-sample/src/main/webapp/pages and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-08-24 10:52:44 -0400 (Fri, 24 Aug 2007)
New Revision: 2480
Modified:
trunk/samples/calendar-sample/src/main/java/org/richfaces/CalendarBean.java
trunk/samples/calendar-sample/src/main/webapp/pages/Calendar.jsp
trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
Log:
Fixed RF-673
Modified: trunk/samples/calendar-sample/src/main/java/org/richfaces/CalendarBean.java
===================================================================
--- trunk/samples/calendar-sample/src/main/java/org/richfaces/CalendarBean.java 2007-08-24 14:16:46 UTC (rev 2479)
+++ trunk/samples/calendar-sample/src/main/java/org/richfaces/CalendarBean.java 2007-08-24 14:52:44 UTC (rev 2480)
@@ -74,9 +74,17 @@
}
public void setPattern(String pattern) {
+
this.pattern = pattern;
}
+ public void selectPattern(ValueChangeEvent event) {
+ String tPatern = (String) event.getNewValue();
+ if (tPatern != null) {
+ pattern = tPatern;
+ }
+ }
+
public CalendarBean() {
locale = Locale.US;
Modified: trunk/samples/calendar-sample/src/main/webapp/pages/Calendar.jsp
===================================================================
--- trunk/samples/calendar-sample/src/main/webapp/pages/Calendar.jsp 2007-08-24 14:16:46 UTC (rev 2479)
+++ trunk/samples/calendar-sample/src/main/webapp/pages/Calendar.jsp 2007-08-24 14:52:44 UTC (rev 2480)
@@ -25,7 +25,7 @@
<body>
<f:view>
<a4j:outputPanel ajaxRendered="true">
- <h:messages />
+ <h:messages showDetail="true" showSummary="true"/>
</a4j:outputPanel>
<h:form>
<h:panelGrid columns="1">
@@ -80,7 +80,7 @@
<h:outputText value="Custom day labels:" />
<h:selectBooleanCheckbox value="#{calendarBean.useCustomDayLabels}" onclick="submit()"/>
<h:outputText value="Select Date Pattern:"/>
- <h:selectOneMenu value="#{calendarBean.pattern}" onchange="submit()">
+ <h:selectOneMenu value="MMM d, yyyy" onchange="submit()" valueChangeListener="#{calendarBean.selectPattern}">
<f:selectItem itemLabel="d/M/yy" itemValue="d/M/yy"/>
<f:selectItem itemLabel="dd/M/yy" itemValue="dd/M/yy"/>
<f:selectItem itemLabel="d/MMM/y" itemValue="d/MMM/y"/>
Modified: trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
===================================================================
--- trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-08-24 14:16:46 UTC (rev 2479)
+++ trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-08-24 14:52:44 UTC (rev 2480)
@@ -132,23 +132,11 @@
public abstract String getToolTipMode();
public abstract void setToolTipMode(String toolTipMode);
-
- public abstract String getInputType();
-
- public abstract void setInputType(String inputType);
-
+
public abstract String getBoundaryDatesMode();
public abstract void setBoundaryDatesMode(String boundaryDatesMode);
-
- public abstract String getOptionalHeader();
-
- public abstract void setOptionalHeader(String optionalHeader);
-
- public abstract String getOptionalFooter();
-
- public abstract void setOptionalFooter(String optionalFooter);
-
+
//TODO onclick add users onclick
// currentDate processing -------------------------------------------------
18 years, 8 months
JBoss Rich Faces SVN: r2479 - in trunk/ui/scrollableDataTable/src/main: javascript/ClientUI/controls/grid and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2007-08-24 10:16:46 -0400 (Fri, 24 Aug 2007)
New Revision: 2479
Modified:
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java
trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js
trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/Selection.js
Log:
RF-661
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java 2007-08-24 14:10:14 UTC (rev 2478)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java 2007-08-24 14:16:46 UTC (rev 2479)
@@ -229,7 +229,7 @@
* @return Returns the rowIndex.
*/
public int getRowIndex() {
- if(_rowIndex >= _grid.getRows()){
+ if((_grid.getRows() != 0 && _rowIndex >= _grid.getRows()) || _rowIndex >= _grid.getRowCount()){
_rowIndex = 0;
}
return _rowIndex;
Modified: trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js
===================================================================
--- trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js 2007-08-24 14:10:14 UTC (rev 2478)
+++ trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridBody.js 2007-08-24 14:16:46 UTC (rev 2479)
@@ -765,7 +765,7 @@
} else if(rowIndex == "down") {
this.scrollBox.getElement().scrollTop = this.scrollBox.getElement().scrollTop + this.fTable.rows[1].offsetTop;
} else {
- var row = $(this.gridId + ":f:" + rowIndex);
+ var row = $(this.gridId + ":n:" + rowIndex);
var offsetTop = this.fTable.offsetTop + row.offsetTop;
if(this.frozenContentBox.getElement().scrollTop > offsetTop) {
this.scrollBox.getElement().scrollTop = offsetTop;
Modified: trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/Selection.js
===================================================================
--- trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/Selection.js 2007-08-24 14:10:14 UTC (rev 2478)
+++ trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/Selection.js 2007-08-24 14:16:46 UTC (rev 2479)
@@ -326,7 +326,7 @@
var range, rowIndex;
var activeRow = this.activeRow;
var noDefault = false;
- this.firstIndex = Number($(this.prefix + ":f").rows[0].id.split(this.prefix)[1].split(":")[2]);;
+ this.firstIndex = Number($(this.prefix + ":n").rows[0].id.split(this.prefix)[1].split(":")[2]);;
switch (event.keyCode || event.charCode) {
case Event.KEY_UP:
if (this.inFocus && activeRow != null) {
@@ -403,7 +403,7 @@
}
var range;
if ( event.shiftKey && !event.ctrlKey && !event.altKey) {
- this.firstIndex = Number($(this.prefix + ":f").rows[0].id.split(this.prefix)[1].split(":")[2]);;
+ this.firstIndex = Number($(this.prefix + ":n").rows[0].id.split(this.prefix)[1].split(":")[2]);;
this.selectionFlag = "x";
if(!this.shiftRow) {
this.shiftRow = this.activeRow;
18 years, 8 months
JBoss Rich Faces SVN: r2478 - trunk/ui/calendar/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: afedosik
Date: 2007-08-24 10:10:14 -0400 (Fri, 24 Aug 2007)
New Revision: 2478
Modified:
trunk/ui/calendar/src/main/config/component/calendar.xml
Log:
http://jira.jboss.com/jira/browse/RF-696 Calendar table
Modified: trunk/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 14:00:50 UTC (rev 2477)
+++ trunk/ui/calendar/src/main/config/component/calendar.xml 2007-08-24 14:10:14 UTC (rev 2478)
@@ -40,77 +40,72 @@
<property>
<name>width</name>
<classname>java.lang.String</classname>
- <description>
- </description>
+ <description>Defines a width of the calendar</description>
<defaultvalue>"400px;"</defaultvalue>
</property>
<property>
<name>height</name>
<classname>java.lang.String</classname>
- <description>
- </description>
+ <description>Defines a height of the calendar</description>
<defaultvalue>"250px"</defaultvalue>
</property>
<property elonly="true">
<name>data</name>
<classname>org.richfaces.model.CalendarDataModel</classname>
- <description>
- </description>
+ <description>Used to provide data for calendar elements. If data is not provided, all Data Model related functions are disabled</description>
</property>
<property elonly="true">
<name>locale</name>
<classname>java.util.Locale</classname>
- <description>
- </description>
+ <description>Used for locale definition</description>
<defaultvalue>getDefaultLocale()</defaultvalue>
</property>
<property elonly="true">
<name>timeZone</name>
<classname>java.util.TimeZone</classname>
- <description>
- </description>
+ <description>Used for current date calculations</description>
<defaultvalue>getDefaultTimeZone()</defaultvalue>
</property>
<property elonly="true">
<name>preloadDateRangeBegin</name>
<classname>java.util.Date</classname>
- <description></description>
+ <description>Define the initial range of date which will be loaded to client from dataModel under rendering</description>
<defaultvalue>getDefaultPreloadBegin(getCurrentDateOrDefault())</defaultvalue>
</property>
<property elonly="true">
<name>preloadDateRangeEnd</name>
<classname>java.util.Date</classname>
- <description></description>
+ <description>Defines the last range of date which will be loaded to client from dataModel under rendering</description>
<defaultvalue>getDefaultPreloadEnd(getCurrentDateOrDefault())</defaultvalue>
</property>
<property elonly="true">
<name>currentDate</name>
<classname>java.util.Date</classname>
- <description></description>
+ <description>Defines current date</description>
<defaultvalue>java.util.Calendar.getInstance(getTimeZone()).getTime()</defaultvalue>
</property>
<property>
<name>datePattern</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Defines date pattern</description>
<defaultvalue>"MMM d, yyyy"</defaultvalue>
</property>
<property>
<name>scrollMode</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Valid values are "ajax" and "client"</description>
<defaultvalue>"ajax"</defaultvalue>
</property>
<property>
<name>popup</name>
<classname>boolean</classname>
- <description></description>
+ <description>If "true" calendar will be rendered initially as hidden with additional elements for calling as popup</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
<name>disabled</name>
<classname>boolean</classname>
- <description></description>
+ <description>If "true", rendered is disabled. In "popup" mode both controls are disabled</description>
<defaultvalue>false</defaultvalue>
</property>
<property>
@@ -122,7 +117,7 @@
<property>
<name>direction</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Defines direction of the calendar popup (top-left, top-right, bottom-left, bottom-right, auto (Default))</description>
<defaultvalue>"bottom-right"</defaultvalue>
</property>
@@ -134,47 +129,47 @@
<property>
<name>weekDayLabelsShort</name>
<classname>java.lang.Object</classname>
- <description></description>
+ <description>Attribute that allows to customize short names of the weeks. Should accept list with the weeks names.</description>
</property>
<property>
<name>monthLabels</name>
<classname>java.lang.Object</classname>
- <description></description>
+ <description>Attribute that allows to customize names of the months. Should accept list with the month names</description>
</property>
<property>
<name>monthLabelsShort</name>
<classname>java.lang.Object</classname>
- <description></description>
+ <description>Attribute that allows to customize short names of the months. Should accept list with the month names</description>
</property>
<property>
<name>buttonLabel</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Defines label for the popup button element</description>
<defaultvalue>"popupButton"</defaultvalue>
</property>
<property>
<name>toolTipMode</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Used to specify mode to load tooltips. Valid values are "none", "single" and "batch"</description>
<defaultvalue>"batch"</defaultvalue>
</property>
<property>
<name>boundaryDatesMode</name>
<classname>java.lang.String</classname>
- <description></description>
+ <description>Used for the dates boundaries in the list. Valid values are "inactive" (Default) – dates inactive and gray colored, "scroll"
+ – boundaries work as month scrolling controls, and "select" – boundaries work in the same way as "scroll" but with the date clicked selection</description>
<defaultvalue>"inactive"</defaultvalue>
</property>
<property>
<name> enableManualInput </name>
<classname>boolean</classname>
- <description>False value for this attribute makes a text field "read-only", so the value can be
- changed only from a handle</description>
+ <description>If true – calendar input will be editable and it will be possible to change the date manualy. If "false" value for this attribute makes a text field "read-only", so the value can be changed only from a handle</description>
<defaultvalue>false</defaultvalue>
</property>
<property>
<name> showInput </name>
<classname>boolean</classname>
- <description>False value for this attribute makes text a field invisible</description>
+ <description>"false" value for this attribute makes text a field invisible. If "true" – input field will be shown</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
@@ -196,14 +191,7 @@
<classname>java.lang.String</classname>
<description></description>
</property>
- <property>
- <name>zindex</name>
- <classname>int</classname>
- <description>
- Attribute is similar to the standard HTML attribute and can specify window placement relative to the content
- </description>
- <defaultvalue>3</defaultvalue>
- </property>
+
</component>
</components>
18 years, 8 months