Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3796108
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:11:07+00:00 2026-05-19T13:11:07+00:00

I got a table which has no pagination, hence all records need to be

  • 0

I got a table which has no pagination, hence all records need to be displayed in one big flow with scrollbar. Using Flex table for the same.

Firefox has no big issues in loading the page, it loads 7000 records in about 90 seconds. But IE simply hangs with 800 records!

Our technical architect recommends to use celltable widget with innerhtml instead of full-fledged widgets.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T13:11:08+00:00Added an answer on May 19, 2026 at 1:11 pm

    GWT’s Grid and FlexTable are derived from a standard HTMLTable. Basically, every time you insert a table row, IE tries to reflow the entire table so the longer the table, the longer the reflow takes. Performance is therefore terrible in large grids.

    You might be better off to use div elements and styling to resemble a table, row and cells.

    <div class="ftable">
      <div class="ftbody">
        <div class="frow">
          <div class="fcell cell0">Hello</div>
          <div class="fcell cell1">World</div>
        </div>
      </div>
    </div>
    

    Inserting a new cell does not cause the other cell divs to reflow so it’s faster.

    Cells are inline divs so they float left. Rows and the table / sections are regular block divs. You control width’s of cells in particular columns through additional styling.

    e.g.

    .ftbody {overflow-y:scroll; overflow-x:hidden; height: 120px; }
    .fcell { display: inline; }
    .cell0 { width: 80px; }
    .cell1 { width: 120px; }
    

    This makes it easier to do things like fix header / scrollable content too since you can specify the body to be a certain height with overflow scrollbars. Site such as this might give you ideas of the layout / style you could use.

    Other optimizations would be to not use widgets to represent cells if you don’t need them. Widgets are most useful if you need to add event handlers etc. and if you don’t then just inject snippets of text or html by the innerHtml / Text properties. It lightens the memory footprint and speeds up event handling.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a table which has about 5.5 million records. I need to delete
I've got a SQL Database Table, which has 35 existing records. One of the
I got a Table which has two fields: Point, and Level, with some sample
I've got a table which has the usual ParentID, ChildID as it's first two
I am doing some self-learning about cakePHP 1.26. I got a table which has
I have got a Sales table which has fields like upgrade[yes/no] date upgraded[datetime] user[username]
I have a Skills table which has 14 records in it. It is structured
I've got an SQL Server database, which has a table containing a number of
i got a table which has fields in each row . if field is
I want a sql table which has all universal units like kg,grams,tons etc.. and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.