JBoss Rich Faces SVN: r6057 - management/design/columnSortFilterFeatures.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-13 09:18:20 -0500 (Wed, 13 Feb 2008)
New Revision: 6057
Added:
management/design/columnSortFilterFeatures/FuncSpec - Sorting Feature.doc
Log:
Added: management/design/columnSortFilterFeatures/FuncSpec - Sorting Feature.doc
===================================================================
(Binary files differ)
Property changes on: management/design/columnSortFilterFeatures/FuncSpec - Sorting Feature.doc
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
18 years, 2 months
JBoss Rich Faces SVN: r6056 - trunk/sandbox/ui.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-02-13 09:17:53 -0500 (Wed, 13 Feb 2008)
New Revision: 6056
Modified:
trunk/sandbox/ui/pom.xml
Log:
inplaceInput added to pom.xml
Modified: trunk/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2008-02-13 13:30:34 UTC (rev 6055)
+++ trunk/sandbox/ui/pom.xml 2008-02-13 14:17:53 UTC (rev 6056)
@@ -20,5 +20,6 @@
<!--module>rex-button</module-->
<module>sortableHeader</module>
<module>fileUpload</module>
+ <module>inplaceInput</module>
</modules>
</project>
\ No newline at end of file
18 years, 2 months
JBoss Rich Faces SVN: r6055 - in trunk/sandbox/samples/inplaceInput-sample/src/main: webapp/WEB-INF and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-02-13 08:30:34 -0500 (Wed, 13 Feb 2008)
New Revision: 6055
Modified:
trunk/sandbox/samples/inplaceInput-sample/src/main/java/org/richfaces/samples/Bean.java
trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/WEB-INF/faces-config.xml
trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.jsp
trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.xhtml
Log:
rendering of controls facet
Modified: trunk/sandbox/samples/inplaceInput-sample/src/main/java/org/richfaces/samples/Bean.java
===================================================================
--- trunk/sandbox/samples/inplaceInput-sample/src/main/java/org/richfaces/samples/Bean.java 2008-02-13 13:30:05 UTC (rev 6054)
+++ trunk/sandbox/samples/inplaceInput-sample/src/main/java/org/richfaces/samples/Bean.java 2008-02-13 13:30:34 UTC (rev 6055)
@@ -0,0 +1,39 @@
+/**
+ * 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.samples;
+
+
+/**
+ * @author Vladimir Molotkov
+ *
+ */
+public class Bean {
+ public String value = "AAAAAAS";
+
+ public String getValue() {
+ return value;
+ }
+
+ public void setValue(String value) {
+ this.value = value;
+ }
+}
\ No newline at end of file
Modified: trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/WEB-INF/faces-config.xml 2008-02-13 13:30:05 UTC (rev 6054)
+++ trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/WEB-INF/faces-config.xml 2008-02-13 13:30:34 UTC (rev 6055)
@@ -4,7 +4,7 @@
<faces-config>
<managed-bean>
<managed-bean-name>bean</managed-bean-name>
- <managed-bean-class>org.richfaces.sandbox.samples.Bean</managed-bean-class>
+ <managed-bean-class>org.richfaces.samples.Bean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<navigation-rule>
Modified: trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.jsp
===================================================================
--- trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.jsp 2008-02-13 13:30:05 UTC (rev 6054)
+++ trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.jsp 2008-02-13 13:30:34 UTC (rev 6055)
@@ -17,7 +17,12 @@
<h:form>
- <ii:inplaceInput value="Perec"/>
+ <ii:inplaceInput value="Perec"
+ oneditactivation="alert('oneditactivation')"
+ onviewactivation="alert('onviewactivation')"
+ oneditactivated="alert('oneditactivated')"
+ onviewactivated="alert('onviewactivated')"
+ />
<br/>
<h:commandButton action="none" value="submit"></h:commandButton>
<br>
Modified: trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.xhtml
===================================================================
--- trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.xhtml 2008-02-13 13:30:05 UTC (rev 6054)
+++ trunk/sandbox/samples/inplaceInput-sample/src/main/webapp/pages/index.xhtml 2008-02-13 13:30:34 UTC (rev 6055)
@@ -19,9 +19,22 @@
</h:form>
<h:form>
-
- <ii:inplaceInput value="Perec"/>
<br/>
+ <ii:inplaceInput id="component"
+ value="#{bean.value}"
+ selectOnEdit="true"
+ defaultLabel="Click..."
+ inputMaxWidth ="200px"
+ inputMinWidth ="100px"
+ showControls="true"
+ controlsPosition="right"
+ >
+ <f:facet name="controls">
+ <input type="button" name="test" value="ok" onclick="document.getElementById('j_id7:component').component.okHandler(event);"/>
+ <input type="button" name="test1" value="Cancel" onclick="document.getElementById('j_id7:component').component.cancelHandler(event);"/>
+ </f:facet>
+ </ii:inplaceInput>
+ <br/>
<h:commandButton action="none" value="submit"></h:commandButton>
</h:form>
</f:view>
18 years, 2 months
JBoss Rich Faces SVN: r6054 - in trunk/sandbox/ui/inplaceInput/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-02-13 08:30:05 -0500 (Wed, 13 Feb 2008)
New Revision: 6054
Modified:
trunk/sandbox/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
trunk/sandbox/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
trunk/sandbox/ui/inplaceInput/src/main/templates/inplaceinput.jspx
Log:
rendering of controls facet
Modified: trunk/sandbox/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
===================================================================
--- trunk/sandbox/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-02-13 13:16:26 UTC (rev 6053)
+++ trunk/sandbox/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-02-13 13:30:05 UTC (rev 6054)
@@ -1,5 +1,6 @@
package org.richfaces.renderkit;
+import java.io.IOException;
import java.util.Map;
import javax.faces.component.UIComponent;
@@ -25,6 +26,8 @@
public class InplaceInputBaseRenderer extends HeaderResourcesRendererBase {
private static Log logger = LogFactory.getLog(InplaceInputBaseRenderer.class);
+
+ private static final String CONTROLS_FACET = "controls";
protected Class<UIInplaceInput> getComponentClass() {
@@ -65,6 +68,22 @@
}
}
+ public void encodeControlsFacet(FacesContext context, UIComponent component) throws IOException {
+ UIComponent facet = component.getFacet(CONTROLS_FACET);
+ if ((facet != null) && (facet.isRendered())) {
+ renderChild(context, facet);
+ }
+ }
+
+ public boolean isControlsFacetExists(FacesContext context, UIComponent component) {
+ UIComponent facet = component.getFacet(CONTROLS_FACET);
+ if (facet != null) {
+ return true;
+ }
+ return false;
+ }
+
+
public String getAsEventHandler(FacesContext context, UIComponent component, String attributeName) {
String event = (String) component.getAttributes().get(attributeName);
ScriptString result = JSReference.NULL;
Modified: trunk/sandbox/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
===================================================================
--- trunk/sandbox/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-02-13 13:16:26 UTC (rev 6053)
+++ trunk/sandbox/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-02-13 13:30:05 UTC (rev 6054)
@@ -6,6 +6,8 @@
initialize: function(clientId, temValueKeepId, valueKeepId, tabberId, attributes, events, classes, barParams) {
this.inplaceInput = $(clientId);
+ this.inplaceInput.component = this;
+
this.tempValueKeeper = $(temValueKeepId);
this.valueKeeper = $(valueKeepId);
this.attributes = attributes;
@@ -45,7 +47,7 @@
this.tabber.observe("focus", function(e){this.switchingStatesHandler(e);}.bindAsEventListener(this));
this.tabber.observe("blur", function(e){this.tmpValueBlurHandler(e);}.bindAsEventListener(this));
- this.bar.bsPanel.observe("mousedown", function(e){this.barMouseDownHandler(e);}.bindAsEventListener(this));
+ this.bar.bar.observe("mousedown", function(e){this.barMouseDownHandler(e);}.bindAsEventListener(this));
},
initEvents : function() {
@@ -303,7 +305,7 @@
positioning : function(inpWidth, inpHeight) {
this.bar.style.position = "absolute";
- this.bsPanel.style.position = "relative";
+ //this.bsPanel.style.position = "relative";
var bs = this.bar.style;
switch (this.position) {
case "top" :
Modified: trunk/sandbox/ui/inplaceInput/src/main/templates/inplaceinput.jspx
===================================================================
--- trunk/sandbox/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-02-13 13:16:26 UTC (rev 6053)
+++ trunk/sandbox/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-02-13 13:30:05 UTC (rev 6054)
@@ -50,6 +50,13 @@
value='#{fieldValue}'/>
<input id='#{clientId}value' name='#{clientId}value' type='hidden' value='#{fieldValue}'/>
<div id="#{clientId}bar" class="is_btn_set" style="display:none;">
+ <jsp:scriptlet>
+ <![CDATA[
+ if (isControlsFacetExists(context, component)) {
+ encodeControlsFacet(context, component);
+ } else {
+ ]]>
+ </jsp:scriptlet>
<div class="rich-inplace-shadow">
<table class="rich-inplace-shadow-size" cellspacing="0" cellpadding="0" border="0">
<tbody>
@@ -72,7 +79,7 @@
</tbody>
</table>
</div>
- <div id="#{clientId}buttons">
+ <div id="#{clientId}buttons" style="position:relative;">
<input id="#{clientId}ok" class="rich-inplace-control" type="image" onmouseup="this.className='rich-inplace-control'"
onmouseout="this.className='rich-inplace-control'" onmousedown="this.className='rich-inplace-control-press'"
src="#{ok_icon}"/>
@@ -80,6 +87,11 @@
onmouseout="this.className='rich-inplace-control'" onmousedown="this.className='rich-inplace-control-press'"
src="#{cancel_icon}"/>
</div>
+ <jsp:scriptlet>
+ <![CDATA[
+ }
+ ]]>
+ </jsp:scriptlet>
</div>
#{value}
</span>
18 years, 2 months
JBoss Rich Faces SVN: r6053 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-13 08:16:26 -0500 (Wed, 13 Feb 2008)
New Revision: 6053
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months
JBoss Rich Faces SVN: r6052 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-13 08:15:59 -0500 (Wed, 13 Feb 2008)
New Revision: 6052
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months
JBoss Rich Faces SVN: r6051 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-02-13 07:45:58 -0500 (Wed, 13 Feb 2008)
New Revision: 6051
Modified:
trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml
trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/form.xml
trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/include.xml
trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
trunk/docs/userguide/en/src/main/docbook/included/keepAlive.xml
trunk/docs/userguide/en/src/main/docbook/included/loadBundle.xml
trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml
trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
trunk/docs/userguide/en/src/main/docbook/included/log.xml
trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml
trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/page.xml
trunk/docs/userguide/en/src/main/docbook/included/poll.xml
trunk/docs/userguide/en/src/main/docbook/included/portlet.xml
trunk/docs/userguide/en/src/main/docbook/included/push.xml
trunk/docs/userguide/en/src/main/docbook/included/region.xml
trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
trunk/docs/userguide/en/src/main/docbook/included/status.xml
trunk/docs/userguide/en/src/main/docbook/included/support.xml
Log:
http://jira.jboss.com/jira/browse/RF-2157 - Section names unification
Modified: trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -34,7 +34,7 @@
<programlisting role="XML"><![CDATA[<a4j:actionParam noEscape="true" name="param1" value="getMyValue()" assignTo="#{bean.prop1}" />]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -45,7 +45,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
<programlisting role="JAVA"><![CDATA[package demo;
Modified: trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -64,7 +64,7 @@
</section>
<section>
- <title>Details of usage</title>
+ <title>Details of Usage</title>
<para>
The <property><rich:changeExpandListener></property> is used as a nested tag with <property><rich:tree></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -39,7 +39,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -40,7 +40,7 @@
<programlisting role="XML"><![CDATA[<a4j:commandLink reRender="someData" action="#{bean.action1}" value="Link"/>]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/form.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/form.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -45,7 +45,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -42,7 +42,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/include.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/include.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/include.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -68,7 +68,7 @@
<para>In this case after a click on a button defined inside "first.xhtml" view, navigation is performed after an Ajax request (the same as standard JSF one) only inside this view.</para>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<programlisting role="JAVA"><![CDATA[<import org.ajax4jsf.component.html.Include;
...
Include myInclude = new Include();
Modified: trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -54,7 +54,7 @@
be object with two subproperties). </para>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/keepAlive.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/keepAlive.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/keepAlive.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -38,7 +38,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis> </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadBundle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadBundle.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadBundle.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -38,7 +38,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -41,7 +41,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -41,7 +41,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/log.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/log.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/log.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -37,7 +37,7 @@
<para>Then, in order to open a log window, press "CTRL+SHIFT+L" on a page with the component.</para>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -46,7 +46,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -64,7 +64,7 @@
</section>
<section>
- <title>Details of usage</title>
+ <title>Details of Usage</title>
<para>
The <property><rich:nodeSelectListener></property> is used as a nested tag with <property><rich:tree></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -52,7 +52,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/page.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/page.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/page.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -47,7 +47,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/poll.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -48,7 +48,7 @@
</emphasis> id after a response comes back.</para-->
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/portlet.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/portlet.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/portlet.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -40,7 +40,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<programlisting role="JAVA"><![CDATA[
import org.ajax4jsf.component.html.HtmlPortlet;
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/push.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/push.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/push.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -37,7 +37,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.AjaxPush;
...
AjaxPush myPush = new AjaxPush();
Modified: trunk/docs/userguide/en/src/main/docbook/included/region.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/region.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -41,7 +41,7 @@
</a4j:region>]]></programlisting>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -44,7 +44,7 @@
with the <property>detail</property> key passed to child components.</para>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -59,7 +59,7 @@
</itemizedlist>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-02-13 12:45:23 UTC (rev 6050)
+++ trunk/docs/userguide/en/src/main/docbook/included/support.xml 2008-02-13 12:45:58 UTC (rev 6051)
@@ -48,7 +48,7 @@
redrawn according to a new data from the response.</para>
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
18 years, 2 months
JBoss Rich Faces SVN: r6050 - in trunk/ui/panelbar/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-02-13 07:45:23 -0500 (Wed, 13 Feb 2008)
New Revision: 6050
Modified:
trunk/ui/panelbar/src/main/java/org/richfaces/renderkit/html/PanelBarRendererBase.java
trunk/ui/panelbar/src/main/resources/org/richfaces/renderkit/html/scripts/panelbar.js
Log:
RF-2184
Modified: trunk/ui/panelbar/src/main/java/org/richfaces/renderkit/html/PanelBarRendererBase.java
===================================================================
--- trunk/ui/panelbar/src/main/java/org/richfaces/renderkit/html/PanelBarRendererBase.java 2008-02-13 12:31:10 UTC (rev 6049)
+++ trunk/ui/panelbar/src/main/java/org/richfaces/renderkit/html/PanelBarRendererBase.java 2008-02-13 12:45:23 UTC (rev 6050)
@@ -134,7 +134,7 @@
for (Iterator iterator = children.iterator(); iterator.hasNext();) {
UIComponent child = (UIComponent) iterator.next();
- if(child instanceof UIPanelBarItem){
+ if(child instanceof UIPanelBarItem && child.isRendered()){
Map item = new HashMap();
UIPanelBarItem panelBarItem = (UIPanelBarItem) child;
Modified: trunk/ui/panelbar/src/main/resources/org/richfaces/renderkit/html/scripts/panelbar.js
===================================================================
--- trunk/ui/panelbar/src/main/resources/org/richfaces/renderkit/html/scripts/panelbar.js 2008-02-13 12:31:10 UTC (rev 6049)
+++ trunk/ui/panelbar/src/main/resources/org/richfaces/renderkit/html/scripts/panelbar.js 2008-02-13 12:45:23 UTC (rev 6050)
@@ -223,6 +223,9 @@
this.content.style.height="0px";
// this.content.style.paddingRight="0px";
this.hightFirefoxDelta = 0;
+ if (RichFaces.navigatorType()==RichFaces.MSIE) {
+ header.style.width = "100%";
+ }
if (this.slidePanel.isIE){
if (this.slidePanel.panel.style.width.indexOf("%")!=-1) {
18 years, 2 months
JBoss Rich Faces SVN: r6049 - trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-02-13 07:31:10 -0500 (Wed, 13 Feb 2008)
New Revision: 6049
Modified:
trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/css/progressBar.xcss
Log:
RF-1696: applied font parameters
Modified: trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/css/progressBar.xcss
===================================================================
--- trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/css/progressBar.xcss 2008-02-13 12:20:43 UTC (rev 6048)
+++ trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/css/progressBar.xcss 2008-02-13 12:31:10 UTC (rev 6049)
@@ -35,11 +35,14 @@
<u:selector name=".rich-progress-bar-uploaded-dig">
<u:style name="border-color" skin="panelBorderColor" />
</u:selector>
-
+
<u:selector name=".rich-progress-bar-shell-dig">
<u:style name="border-color" skin="panelBorderColor" />
+ <u:style name="font-family" skin="generalFamilyFont" />
+ <u:style name="font-size" skin="generalSizeFont" />
+ <u:style name="color" skin="controlTextColor" />
</u:selector>
-
+
<u:selector name=".rich-progress-bar-remained">
<u:style name="background-color" skin="controlBackgroundColor" />
<u:style name="text-color" skin="controlTextColor" />
18 years, 2 months
JBoss Rich Faces SVN: r6048 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-13 07:20:43 -0500 (Wed, 13 Feb 2008)
New Revision: 6048
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months