gigaZhang / struts2-jquery

Automatically exported from code.google.com/p/struts2-jquery
0 stars 0 forks source link

hoverrows="false" is not working #1069

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
(This is for feature requests and bugs in Struts2 jQuery Plugin - for
getting help, please use the User Group.
http://groups.google.com/group/struts2-jquery )

What steps will reproduce the problem?
1. In a sample grid setting the hoverrows="false" will not disable tow hovering
2.
3.

What is the expected output? What do you see instead?

Which struts2 version?
3.6.15

Which struts2-jquery plugin version?
3.7.0 Snapshot

Please provide any additional information below.
It seems to be a solved issue lots time ago, But I found it in last version

Original issue reported on code.google.com by afattah...@gmail.com on 4 Jan 2014 at 2:03

GoogleCodeExporter commented 9 years ago
Just tested with following showcase snippet and it works for me.

<s:url var="remoteurl" action="grid-data-provider" namespace="/grid"/>
<sjg:grid
        id="gridtable"
        caption="Customers Examples"
        dataType="json"
        href="%{remoteurl}"
        pager="true"
        gridModel="gridModel"
        rowList="10,15,20"
        rowNum="15"
        rownumbers="true"
        resizable="true"
        width="700"
        shrinkToFit="true"
        hoverrows="false"
        >
    <sjg:gridColumn name="id" index="id" title="ID" width="30" formatter="integer" sortable="false" displayTitle="false"/>
    <sjg:gridColumn name="name" index="name" title="Name" width="290" sortable="true"/>
    <sjg:gridColumn name="country" index="country" width="100" title="Country" sortable="false"/>
    <sjg:gridColumn name="city" index="city" width="100" title="City" sortable="false"/>
    <sjg:gridColumn name="creditLimit" index="creditLimit" width="100" title="Credit Limit" align="right"
                    formatter="currency" sortable="false"/>
</sjg:grid>

Original comment by johgep on 10 Apr 2014 at 7:51