GroupTable getting stuck while showing data

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>

Screenshot-Wait-Grid

Hi,
Any solution for this bug.

Hi,

Could you please provide more information? From your code I see that you’re using dataGrid, not GroupTable.

How do you load data? Do you use a collection container with a query or a custom service to load data?

Regards,
Gleb

i m using custom sql query to load data using jdbctemplate.

demo.txt (2.5 KB)

Then I recommend to debug your code and check if all attribute values are loaded and result collection doesn’t contain items with duplicate ids or duplicates in general.

okay thank you.

There is no duplicate values all values are unique. Any other scenario where grid not getting loaded.

Could you please attache a demo project that reproduces the issue?