[JBoss JIRA] Created: (RF-5601) inputNumberSlider: incorrect slider icon view in Opera
by Tsikhon Kuprevich (JIRA)
inputNumberSlider: incorrect slider icon view in Opera
------------------------------------------------------
Key: RF-5601
URL: https://jira.jboss.org/jira/browse/RF-5601
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: any
Reporter: Tsikhon Kuprevich
Assignee: Nick Belaevski
Priority: Minor
<body topmargin=20 leftmargin="20">
<f:subview id="subView">
<h:form id="form">
<rich:inputNumberSlider id="SliderId"
inputPosition="#{inputNumberSlider.inputPosition}"
orientation="#{inputNumberSlider.orientation}"
value="#{inputNumberSlider.value}" width="#{inputNumberSlider.width}"
height="#{inputNumberSlider.height}">
</rich:inputNumberSlider>
<h:panelGrid columns="2" cellspacing="10px" border="1">
<h:outputText value="inputPosition"></h:outputText>
<h:selectOneRadio value="#{inputNumberSlider.inputPosition}">
<f:selectItem itemLabel="right" itemValue="right" />
<f:selectItem itemLabel="left" itemValue="left" />
<f:selectItem itemLabel="top" itemValue="top" />
<f:selectItem itemLabel="bottom" itemValue="bottom" />
<a4j:support event="onchange" reRender="SliderId"></a4j:support>
</h:selectOneRadio>
<h:outputText value="Orientation:"></h:outputText>
<h:selectOneRadio value="#{inputNumberSlider.orientation}"
required="false">
<f:selectItem itemLabel="vertical" itemValue="vertical" />
<f:selectItem itemLabel="horizontal" itemValue="horizontal" />
<a4j:support event="onchange" reRender="SliderId"></a4j:support>
</h:selectOneRadio>
<h:outputText value="Width:"></h:outputText>
<h:inputText value="#{inputNumberSlider.width}" title="in px">
<a4j:support event="onchange" reRender="SliderId"></a4j:support>
</h:inputText>
<h:outputText value="Height:"></h:outputText>
<h:inputText value="#{inputNumberSlider.height}" title="in px">
<a4j:support event="onchange" reRender="SliderId"></a4j:support>
</h:inputText>
<a4j:commandButton value="reRender" reRender="form"></a4j:commandButton>
<h:commandButton action="Submit()" value="Submit"></h:commandButton>
</h:panelGrid>
</h:form>
</f:subview>
</body>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months
[JBoss JIRA] Created: (RF-2479) inputNumberSlider: minValue & maxValue allow to input data with wrong type. String value is displayed on rich:inputNumberSlider & leads to component hovering.
by Mikhail Vitenkov (JIRA)
inputNumberSlider: minValue & maxValue allow to input data with wrong type. String value is displayed on rich:inputNumberSlider & leads to component hovering.
--------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: RF-2479
URL: http://jira.jboss.com/jira/browse/RF-2479
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: IE6, IE7, FF, Safari(3.2.0.CR2)
Reporter: Mikhail Vitenkov
Assigned To: Nick Belaevski
Attachments: inputNumberSliderMinMax.png
Step 1. Navigate to page contained tested rich:inputNumberSlider component.
Step 2. Set minValue attribute to "asfasdf" string value.
Step 3. Verify value displayed as minValue on the inputNumberSlider component(left side).
Step 4. Try to drag component's pointer.
Step 5. Try to input any value in component's input box.
Step 6. Repeat Step 2-5 for maxValue inputNumberSlider's attribute.
Actual behavior:
There are no restrictions to set minValue & maxValue attributes to value with wrong type(not int). After wrong value is inputed & displayed on component - component became disabled(input box & slider are disabled). For more information see attached inputNumberSliderMinMax.png
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months
[JBoss JIRA] Created: (RF-4762) width of rich:column don't work with orderingList
by SIBUT Nicolas (JIRA)
width of rich:column don't work with orderingList
-------------------------------------------------
Key: RF-4762
URL: https://jira.jboss.org/jira/browse/RF-4762
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: SIBUT Nicolas
The width attribute doesn't work with an orderingList :
<rich:orderingList value="#{scenarioRepo.etapes}" var="_etape"">
<rich:column style="width:300px;">
<f:facet name="header">
<io:label cle="etapeScenario.ordre" />
</f:facet>
<h:outputText value="#{_etape.ordre}" />
</rich:column>
<rich:column width="100">
<f:facet name="header">
<io:label cle="etapeScenario.action" />
</f:facet>
<h:inputTextarea value="#{_etape.action}" cols="60" />
</rich:column>
</rich:orderingList>
It work good with a dataTable and the same code.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months