Hi all,
i am currently using Beehive API for rendering data on the JSP page.
I have one datagrid and i want the scroll bar in my datagrid while
displaying rows.

but when i am simply using <div> for the <netui:rows> portion to display the
scroll bar it will not rendering in proper format.

What i had found that if i will use <div> tag in code like 

<netui-data:dataGrid dataSource="pageFlow.listDocComments"
name="customerGrid" styleClassPrefix="kissDataGrid">
                        <netui-data:configurePager disableDefaultPager="true"
defaultPageSize="${pageFlow.numberOfDocComments}" />
                        <div class='fixedwidth'> 
                        <netui-data:header>
                                <netui-data:headerCell 
cellStyleClass="lockedHor"
cellStyle="color:#F0F0F0;" headerText=" X " />
                                <netui-data:headerCell 
cellStyleClass="lockedHor"
headerText="${bundle.labels.popup_edit_remarks_page_number}" />
                                <netui-data:headerCell 
cellStyleClass="lockedHor"
headerText="${bundle.labels.popup_edit_remarks_page_description}" />
                        </netui-data:header>
                        </div>
                        <div class='lipsum'>
                        <netui-data:rows>
                                <netui-data:templateCell>
                                        <netui:button action = "goToEditRemark" 
value=" "
styleClass="imageDetailButton">
                                                <netui:parameter name="index" 
value="${container.index}" />
                                        </netui:button>
                                </netui-data:templateCell>
                                <netui-data:spanCell 
value="${container.item.commentNr}" />
                                <netui-data:anchorCell cellStyle="white-space: 
normal;"
value="${container.item.description}" action="goToEditRemark">
                                        <netui:parameter name="index" 
value="${container.index}" />
                                </netui-data:anchorCell>
                        </netui-data:rows>
                        </div>
                </netui-data:dataGrid>


the <div class='lipsum'> was writing 3 times on the page.
so that the GUI design of that page was not maintain.
I mean i was getting three extra scroll bars on the page.

I had tried the CSS solutions but because of IE8 issue i am unable to get
this.

Can anyone help me on this ?
-- 
View this message in context: 
http://old.nabble.com/Require-Scroll-Bar-For-%3Cnetui%3Arows%3E-tp28469919p28469919.html
Sent from the Beehive - User mailing list archive at Nabble.com.

Reply via email to