You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Srinivas Surapaneni (JIRA)" <de...@beehive.apache.org> on 2006/06/14 22:41:29 UTC

[jira] Created: (BEEHIVE-1122)

<netui-data:configurePager>
---------------------------

         Key: BEEHIVE-1122
         URL: http://issues.apache.org/jira/browse/BEEHIVE-1122
     Project: Beehive
        Type: Bug

    Reporter: Srinivas Surapaneni


There should be a way in the dataGrid to show all the items in the list

I tried

<netui-data:configurePager pageSize="${dataGrid.dataSet.size} disableDefaultPager="true"/>

The above works if the dataSet size > 0.

It throws exceptions if the dataSet size == 0

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (BEEHIVE-1122)

Posted by "Carlin Rogers (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1122?page=all ]

Carlin Rogers updated BEEHIVE-1122:
-----------------------------------

    Component: NetUI
         type: Improvement  (was: Bug)
      Version: 1.0.1

Just updating the component setting and adding comments from Eddie's email to the dev alias.

He thought he would... 

'add a "showAll" attribute to the configure pager tag.  If
you are data binding to a list, you can do something like:

 ${fooList.size}

to get the total size.'

> <netui-data:configurePager>
> ---------------------------
>
>          Key: BEEHIVE-1122
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-1122
>      Project: Beehive
>         Type: Improvement

>   Components: NetUI
>     Versions: 1.0.1
>     Reporter: Srinivas Surapaneni

>
> There should be a way in the dataGrid to show all the items in the list
> I tried
> <netui-data:configurePager pageSize="${dataGrid.dataSet.size} disableDefaultPager="true"/>
> The above works if the dataSet size > 0.
> It throws exceptions if the dataSet size == 0

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (BEEHIVE-1122) add ability to show all records in a data set to the data grid

Posted by "Eddie O'Neil (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1122?page=all ]

Eddie O'Neil updated BEEHIVE-1122:
----------------------------------

    Summary: add ability to show all records in a data set to the data grid  (was: <netui-data:configurePager>)

> add ability to show all records in a data set to the data grid
> --------------------------------------------------------------
>
>                 Key: BEEHIVE-1122
>                 URL: http://issues.apache.org/jira/browse/BEEHIVE-1122
>             Project: Beehive
>          Issue Type: Improvement
>          Components: NetUI
>    Affects Versions: 1.0.1
>            Reporter: Srinivas Surapaneni
>         Assigned To: Eddie O'Neil
>
> There should be a way in the dataGrid to show all the items in the list
> I tried
> <netui-data:configurePager pageSize="${dataGrid.dataSet.size} disableDefaultPager="true"/>
> The above works if the dataSet size > 0.
> It throws exceptions if the dataSet size == 0

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (BEEHIVE-1122)

Posted by "Eddie O'Neil (JIRA)" <de...@beehive.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-1122?page=all ]

Eddie O'Neil reassigned BEEHIVE-1122:
-------------------------------------

    Assign To: Eddie O'Neil

> <netui-data:configurePager>
> ---------------------------
>
>          Key: BEEHIVE-1122
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-1122
>      Project: Beehive
>         Type: Improvement

>   Components: NetUI
>     Versions: 1.0.1
>     Reporter: Srinivas Surapaneni
>     Assignee: Eddie O'Neil

>
> There should be a way in the dataGrid to show all the items in the list
> I tried
> <netui-data:configurePager pageSize="${dataGrid.dataSet.size} disableDefaultPager="true"/>
> The above works if the dataSet size > 0.
> It throws exceptions if the dataSet size == 0

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (BEEHIVE-1122) add ability to show all records in a data set to the data grid

Posted by "Carlin Rogers (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/BEEHIVE-1122?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Carlin Rogers resolved BEEHIVE-1122.
------------------------------------

       Resolution: Fixed
    Fix Version/s: V.Next
         Assignee: Julie Zhuo  (was: Eddie O'Neil)

This was fixed with SVN revision 415150. Setting the new showAll attribute to "true" in the configurePager tag will display all the rows on a single page. To ensure that the page does not display the pager links, make sure to set disableDefaultPager="true", something like this...

<netui-data:configurePager showAll="true" disableDefaultPager="true"/>


> add ability to show all records in a data set to the data grid
> --------------------------------------------------------------
>
>                 Key: BEEHIVE-1122
>                 URL: https://issues.apache.org/jira/browse/BEEHIVE-1122
>             Project: Beehive
>          Issue Type: Improvement
>          Components: NetUI
>    Affects Versions: 1.0.1
>            Reporter: Srinivas Surapaneni
>            Assignee: Julie Zhuo
>             Fix For: V.Next
>
>
> There should be a way in the dataGrid to show all the items in the list
> I tried
> <netui-data:configurePager pageSize="${dataGrid.dataSet.size} disableDefaultPager="true"/>
> The above works if the dataSet size > 0.
> It throws exceptions if the dataSet size == 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.