Try Upgrade Adviser – Scan Your Ext JS Codebase for V8 App Upgrade

New! Try dark mode

Top Support Tips

June 19, 2014 3373 Views

Get a summary of this article:

Show

Variable Heights in Grid Rows

by Seth Lemmons

Grid rows often maintain the same height throughout your grid. However, this may not always be the case, depending on the data you provide for the grid cells to consume. Under most circumstances, the grid will automatically adjust to accommodate variable height cells even with locked grids (which are actually composed of two synced grids). That said, you will notice the row heights are no longer synced on a locked grid when you use the bufferedrenderer plugin. Luckily, there is a workaround.

The row heights are not automatically determined between locked and normal grids generated by a locking grid with buffered renderer. This is due to the overhead created by attempting to calculate row heights. Therefore, the variableRowHeight plugin config is ‘false’ by default. If you find yourself in a situation in which your data doesn’t fit neatly into the standard grid row height, you can set the variableRowHeight to ‘true’. Then, the rows traversing the locked and unlocked grid sections will once again be aligned correctly.

You can see an example of variableRowHeight in action here,
and learn more about variableRowHeight in our docs.


Listless Lists?

by Greg Barry

Have you recently updated your application to Sencha Touch 2.2+? If so, did your lists start loading sluggishly? I have good news. Earlier versions of Sencha Touch had infinite set to “true” for lists. However, newer versions of Sencha Touch have it set to false by default.

That said, if you weren’t implicitly setting infinite:true on your lists, they would start defaulting to false in Sencha Touch 2.2+. This can make for very slow list rendering. This slowness occurs because all list items will try to render at the same time. As you can imagine, this may result in some slower load times. Simply setting infinite to true allows the list to render in smaller sections and returns your list to its former state.

You can learn more about the infinite configuration in our docs.

Recommended Articles

Creating a Mobile Application with Ext JS and Capacitor

Introduction Modern mobile applications demand rich user experiences, cross-platform compatibility, and rapid development cycles. In this document, you will learn how Ext JS and Capacitor…

Building Real-Time Dashboards with WebSockets and Frontend Frameworks

Real-time dashboards have become essential in industries where users need instant visibility into changing data. Whether monitoring financial transactions, logistics operations, industrial systems, application health,…

Front-End Frameworks Compared in 2026: Performance, Use Cases, and Trade-offs

Front-end framework selection in 2026 centers on three critical decisions: complete platform versus ecosystem assembly, performance at enterprise scale, and long-term maintenance costs. Ext JS…

Enhancing Component Logic: A Developer’s Guide to Ext JS Plugins

In the world of Ext JS, reusability is king. While subclassing a component is a common approach to extend functionality, it often leads to rigid…

Upgrading Ext JS 7.x to 8.0: A Practical Enterprise Guide

For teams already running Ext JS 7.x, upgrading to Ext JS 8.0 is usually a manageable modernization step rather than a full-scale rebuild. Because the…

Upgrading Ext JS 6.x to 8.0: A Practical Guide

For organizations maintaining Ext JS 6.x applications, upgrading to Ext JS 8.0 is typically a modernization exercise focused on stability, maintainability, tooling alignment, and validation…

View More