Hi,
I had created tabsheet in which i am trying to load values in group table. What we have observed is that some times only limited data is getting load like 4 or 5 records and count of data is also being on right side but grid get stuck for certain time and then it shows wait or exit on the browser.
Then we go to setting button displayed on right side of grid and unselect and one or two column and now data is getting properly loaded on workbench. There is nothing getting printed in log-back logs and also these scenarios are not getting replicated for other users.
<tab id="pendingTab" caption="Pending" spacing="true">
<hbox spacing="true">
<comboBox id="verticalComboBox" caption="Vertical" nullOptionVisible="false" required="true"/>
<comboBox id="modeComboBox" caption="Mode" required="true" nullOptionVisible="false" optionsEnum="com.entity.ModesOfPay"/>
<!--<filter dataLoader="pendingDl" captionPosition="TOP" />
<propertyFilter property="vertical" operation="EQUAL" dataLoader="pendingDl" captionPosition="TOP" operationCaptionVisible="false" />
<propertyFilter property="paymentMode" operation="EQUAL" dataLoader="pendingDl" captionPosition="TOP" operationCaptionVisible="false" />-->
</hbox>
<scrollBox>
<dataGrid id="pendingTable"
width="100%"
dataContainer="pendingDc"
selectionMode="MULTI_CHECK" height="AUTO" footerVisible="true" >
<columns>
<column property="receipt"/>
<column property="transId"/>
<column property="vertical"/>
<column property="businessNumber"/>
<column property="name"/>
<column id="createdOn" caption="Transaction Date">
<!-- <componentRenderer/>-->
</column>
<column property="amount"/>
<column property="type"/>
<!-- <column property="modifiedBy"/>-->
<column property="remarks"/>
</columns>
<simplePagination itemsPerPageDefaultValue="15" />
<buttonsPanel id="buttonsPanel" spacing="true"
alwaysVisible="true">
<button id="transferBtn" caption="Transfer"/>
<button caption="Start Deposit" id="depositBtn"/>
</buttonsPanel>
</dataGrid>
</scrollBox>
</tab>