[JBoss JIRA] Created: (RF-8952) Add <cdk:function> element to template language.
by Alexander Smirnov (JIRA)
Add <cdk:function> element to template language.
------------------------------------------------
Key: RF-8952
URL: https://jira.jboss.org/browse/RF-8952
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: CDK
Reporter: Alexander Smirnov
Assignee: Alexander Smirnov
Fix For: 4.0.0.Milestone2
It would be useful to generate html code snippets as Java functions that would be called anywhere from template or java code. For example, html table cells need sofisticated code for iteration while they should be generated inside row elements. The template like this:
<table>
<tbody>
<cdk:call name="renderRows"/>
<cdk:function name="renderRow" >
<tr>
<cdk:call name="renderCells"/>
<cdk:function name="renderCell">
<td>....</td>
</cdk:function>
</tr>
</cdk:function>
</tbody>
</table>
lets to put row/cells rendering logic into Java code (renderRows/renderCells methods ) while template markup still follow desired html code.
P.S. It would be even more convenient to union both calls into single element with name/call attributes.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] Created: (RF-10865) rich:extendedDataTable when expanding frozen column too much there is no scroller to view other columns
by Juraj Huska (JIRA)
rich:extendedDataTable when expanding frozen column too much there is no scroller to view other columns
-------------------------------------------------------------------------------------------------------
Key: RF-10865
URL: https://issues.jboss.org/browse/RF-10865
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.0.0.Final
Environment: demo application - richface-showcase, component demo - extendedDataTable, samples - ExtendedData Table Basic Usage and ExtendedData Table Basic Usage
Reporter: Juraj Huska
When I expanded column which is frozen too much, I mean expand more than the width of table is, then there is no scroller to view other columns, and I can not revert it, to see them again. The only solution to view them again is to refresh the page.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months
[JBoss JIRA] Created: (RF-10833) rich:tooltip doesn't work inside h:outputText
by Rene O (JIRA)
rich:tooltip doesn't work inside h:outputText
---------------------------------------------
Key: RF-10833
URL: https://issues.jboss.org/browse/RF-10833
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Final
Environment: richfaces-4.0.0.Final, myfaces-2.0.5-SNAPSHOT, mojarra-2.1.1-b03,tomcat-7.0.11
Reporter: Rene O
If I use rich:tooltip inside h:outputText it doesn't show up. But inside a commandlink it works for example.
This doesn't work:
<h:outputText value="testvalue" >
<rich:tooltip>testtooltiptext</rich:tooltip>
</h:outputText>
But this works:
<a4j:commandLink value="testlink" ...>
<rich:tooltip>testtooltiptext</rich:tooltip>
</a4j:commandLink>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 6 months