You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Eddie O'Neil (JIRA)" <be...@incubator.apache.org> on 2005/02/26 23:17:49 UTC

[jira] Resolved: (BEEHIVE-180) ResultSetIterator needs to support case insensitive comparison for Map.get(String)

     [ http://issues.apache.org/jira/browse/BEEHIVE-180?page=history ]
     
Eddie O'Neil resolved BEEHIVE-180:
----------------------------------

      Assign To: Scott Symmank  (was: Eddie O'Neil)
     Resolution: Fixed
    Fix Version: V1Beta

Fixed with 155594.  It should be possilble to data bind to a "CUSTOMERS" column in a data grid with:

${container.item.CUSTOMERS} 
and
${container.item.customers}

> ResultSetIterator needs to support case insensitive comparison for Map.get(String)
> ----------------------------------------------------------------------------------
>
>          Key: BEEHIVE-180
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-180
>      Project: Beehive
>         Type: Bug
>   Components: NetUI
>     Versions: V1Beta
>     Reporter: Eddie O'Neil
>     Assignee: Scott Symmank
>      Fix For: V1Beta

>
> When creating an Iterator for an instance of java.sql.ResultSet, the Iterator should return Map types that support a case-insensitive Map.get(String) method.  This is used when binding to a ResultSet from tags that render data sets such as the dataGrid and repeater.  For example, this works today:
>         <netui-data:dataGrid dataSource="pageScope.customers" name="customers">
>             <netui-data:columns>
>                 <netui-data:literalColumn value="${container.item.CUSTOMERID}"/>
>                 <netui-data:literalColumn value="${container.item.COMPANYNAME}"/>
>             </netui-data:columns>
>         </netui-data:dataGrid>
> but this should also work:
>         <netui-data:dataGrid dataSource="pageScope.customers" name="customers">
>             <netui-data:columns>
>                 <netui-data:literalColumn value="${container.item.customerid}"/>
>                 <netui-data:literalColumn value="${container.item.companyname}"/>
>             </netui-data:columns>
>         </netui-data:dataGrid>

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira