[JBoss JIRA] Commented: (RF-89) Allow tab panel render children inside iterable components
by Grzegorz Szyma??ski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-89?page=comments#action_12401389 ]
Grzegorz Szyma??ski commented on RF-89:
---------------------------------------
My solution works that way:
<rich:tabPanel>
<rich:tabs label="#{item.label}" value="#{bean.items}" var="item">
...
</rich:tabs>
</rich:tabPanel>
I create new comonent UITabs (extends UITab), and modify (just a little) only 3 classes:
- TabPanelRendererBase (change activeTab to activeTabName, because it is better to recognize tab by name for the UITabs component)
- TabRendererBase (encode UITabs in specific way)
- UITabPanel (trick with TabsIterator)
and of course tabPanel.xml (add tabs component)
I prepare patches, tabPanelUITabs.jar and tabPanelDemoUITabs.war and sources. The solution work even if we have table inside UITabs with inputs (see attached war) .
If you like my code you can use it. Some parts of it was copy-paste form UIData (myfaces)...
> Allow tab panel render children inside iterable components
> ----------------------------------------------------------
>
> Key: RF-89
> URL: http://jira.jboss.com/jira/browse/RF-89
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.0.0
> Reporter: Ilya Shaikovsky
> Assigned To: Maksim Kaszynski
> Fix For: Future Versions
>
> Attachments: tabPanelDemoUITabs.patch
>
>
--
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
16 years, 9 months
[JBoss JIRA] Updated: (RF-706) Create Demo page with many components, large table with most of the features enabled to demo rendering performance
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-706?page=all ]
Nick Belaevski updated RF-706:
------------------------------
Assignee: Tsikhon Kuprevich
> Create Demo page with many components, large table with most of the features enabled to demo rendering performance
> ------------------------------------------------------------------------------------------------------------------
>
> Key: RF-706
> URL: http://jira.jboss.com/jira/browse/RF-706
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.1.0, 3.2.0, Future Versions
> Reporter: Mikhail Grushinskiy
> Assigned To: Tsikhon Kuprevich
> Fix For: Future Versions
>
>
> Create Demo page with many components, large table with most of the features enabled to demo rendering performance.
> It could be also used for stress testing. Since JSF usually has not great performance with rendering this could be very useful.
> I usually have some problems rendering tables 30 rows * 30 columns when it has many features as AJAXed filters in headers,
> sorting, pagination, grouping. Throwing in resizeable headers and other variety of JSF controls into cells, delete, edit row controls,
> multiple row selection with check boxes, submit button to submit table as a form to the server
> and this is a good real world stress test.
--
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
16 years, 9 months
[JBoss JIRA] Updated: (RF-590) Support a rowDetail facet in DataTable
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-590?page=all ]
Nick Belaevski updated RF-590:
------------------------------
Fix Version/s: 3.2.1
(was: 3.2.0)
> Support a rowDetail facet in DataTable
> --------------------------------------
>
> Key: RF-590
> URL: http://jira.jboss.com/jira/browse/RF-590
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.0.1
> Reporter: Diego Ballve
> Assigned To: Maksim Kaszynski
> Fix For: 3.2.1
>
>
> Frequently we have the need to display more details of a table row immediately after that row. If I'm not mistaken MyFaces Tomahawk or Trinidad has something like that.
> Currently (RichFaces 3.0.1) you can do it by using a subTable w/ 1 column that spans all parent table columns.. but that is hacky and you have to play around with the var/value attributes.
> With the facet, the same var defined for the row would be available for the details, and it could even support input components - which work on dataTable but fail in subTable, in in 3.0.1.
--
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
16 years, 9 months
[JBoss JIRA] Updated: (RF-573) Prevent suggestionbox from performing too much Ajax requests via "cache" of a previous requested suggestion list
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-573?page=all ]
Nick Belaevski updated RF-573:
------------------------------
Fix Version/s: Future Versions
(was: 3.2.0)
> Prevent suggestionbox from performing too much Ajax requests via "cache" of a previous requested suggestion list
> ----------------------------------------------------------------------------------------------------------------
>
> Key: RF-573
> URL: http://jira.jboss.com/jira/browse/RF-573
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.0.1
> Reporter: Brian Preu?
> Assigned To: Maksim Kaszynski
> Fix For: Future Versions
>
>
> It would be very useful to prevent the suggestionbox from performing too many Ajax requests to the server via some sort of cache mechanism, which uses the already requested suggestion list.
> An example:
> 1. type a "h"
> 2. suggestionbox performs Ajax request
> 3. server responds with a list of 20 entries beginning with "h"
> 4. type an "i", so that the input box has the value "hi"
> 5. instead of performing another Ajax request query the already existing list of 20 entries beginning with "h"
> 6. suggestionbox displays all entries beginning with "hi" from the existing list in the DOM tree
> 7. and so on
> This would save a lot of bandwidth and server resources by using the resources of the client browser.
> Certainly there should be a switch to turn on and off this cache feature. Maybe there are some other options that can be added for this kind of functionality.
> Cool feature, ain't it? :D
--
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
16 years, 9 months
[JBoss JIRA] Resolved: (RF-402) create skinnable buttons and input fields
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-402?page=all ]
Nick Belaevski resolved RF-402.
-------------------------------
Fix Version/s: 3.2.0
(was: Future Versions)
Resolution: Duplicate Issue
Assignee: Tsikhon Kuprevich (was: Nick Belaevski)
> create skinnable buttons and input fields
> -----------------------------------------
>
> Key: RF-402
> URL: http://jira.jboss.com/jira/browse/RF-402
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.0.1
> Reporter: Dan Allen
> Assigned To: Tsikhon Kuprevich
> Fix For: 3.2.0
>
> Original Estimate: 3 days
> Remaining Estimate: 3 days
>
> RichFaces is a beautiful interface, but I am perplexed by the lack of skinnable buttons. A couple of the custom component fields in RichFaces do use a skinned input field, so some of the work has already been done. Forms are probably the single most important widget in a web application, and for RichFaces to not support them leaves a lot of work up to the developer to "fit in" to the (otherwise elegant) RichFaces UI.
--
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
16 years, 9 months