[JBoss JIRA] Created: (RF-10763) rich:select Attribute style is ignored
by Rene O (JIRA)
rich:select Attribute style is ignored
---------------------------------------
Key: RF-10763
URL: https://issues.jboss.org/browse/RF-10763
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.CR1
Reporter: Rene O
<rich:select id="selectId"
style="width:100px;"
>
<f:selectItem itemValue="item" itemLabel="Item" />
</rich:select>
If I try to declare the width of rich:select via style="width:100px;" it is ignored. Result: The width of rich:select is 200px instead of 100px.
Please note: Behaviour appears with Richfaces 4.0.0-SNAPSHOT [15.03.2011] but not with 4.0.0-CR1
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10778) richfaces-showcase: navigation JS issue (and code clean-up)
by Ilya Shaikovsky (JIRA)
richfaces-showcase: navigation JS issue (and code clean-up)
-----------------------------------------------------------
Key: RF-10778
URL: https://issues.jboss.org/browse/RF-10778
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.0.0.CR1
Reporter: Ilya Shaikovsky
Assignee: Ilya Shaikovsky
Fix For: 4.0.0.Final
1) document.location should be changed to document.location.href. Actually both variants now working(thanks to browsers) but first one is incorrect as we actually changing the adress but assigning to the whole location js object.
2) remove view parameters. Them not used so could confuse. Sometimes them firing conversion errors(causes unnesessary processing invocations).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10776) Multi-clicking tabPanel tab resets drop-downs
by Eric Parshall (JIRA)
Multi-clicking tabPanel tab resets drop-downs
---------------------------------------------
Key: RF-10776
URL: https://issues.jboss.org/browse/RF-10776
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Reporter: Eric Parshall
We are using RichFaces 3.3 and the tabPanel control on several screens to organize a large number of text boxes and drop-down controls. When we double- or triple-click a tab that is currently hidden and has drop-down controls on it the tab will appear correctly at first, but then all of the drop-down controls get reset to their null value. This happens to all of the drop-down controls that allow a null selection.
Here is the portion showing the tabPanel control:
<rich:tabPanel
id="appTabPanel"
switchType="ajax" ignoreDupResponses="true"
selectedTab="#{applicationDetailController.selectedTab}"
style="width: 100%"> <rich:tab
label="Tab With Controls"
id="detailTab"
eventsQueue="queue"
rendered="#{authUser.hasAccessToRight('application_tab_premium')}">
<rich:panel id="premiumDetailPanel" style="border:0">
<a:include id="i1" viewId="/Application/PremiumDetail/premiumDetail.xhtml"
ajaxRendered="false" eventsQueue="queue"/>
</rich:panel>
</rich:tab>
When I triple-click I see the get method called 3 times and then the set method gets called with a null value.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10775) ignoreDupResponce: implemented wrong according to code review
by Ilya Shaikovsky (JIRA)
ignoreDupResponce: implemented wrong according to code review
-------------------------------------------------------------
Key: RF-10775
URL: https://issues.jboss.org/browse/RF-10775
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: core
Affects Versions: 4.0.0.CR1
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
In order to ignore dom updates two conditions should be met:
1) next request to be sent should be "similar" to the current from which the responce came
2) current should have ignoreDupRespoce = true.
but according to current code 1) step checked in a wrong way. The *last* event is get instead of the next.
Code:
isIgnoreResponse: function () {
var lastEntry = getLastEntry();
return lastEntry && lastRequestedEntry.isIgnoreDupResponses() && lastRequestedEntry.getRequestGroupId() == lastEntry.getRequestGroupId();
},
var getLastEntry = function () {
var lastIdx = items.length - 1;
return items[lastIdx];
};
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10571) styleClass of the first rich:column is applied to every rendered row
by Marc-Christian Schroeer (JIRA)
styleClass of the first rich:column is applied to every rendered row
--------------------------------------------------------------------
Key: RF-10571
URL: https://issues.jboss.org/browse/RF-10571
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Milestone6
Environment: Tomcat 7.0.6, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHOT
Reporter: Marc-Christian Schroeer
When using a rich:dataTable-component, the styleClass of the first <rich:column></rich:column> is applied to the each <tr>-tag rendered.
Example:
<rich:dataTable ...>
<rich:column styleClass="nww">
...
</rich:column>
</rich:dataTable>
results in
<table>
<tr class="rf-dt-r nww">
<td>...</td>
</tr>
<tr class="rf-dt-r nww">
<td>...</td>
</tr>
...
</table>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months