Ext JS 7.9 & Rapid Ext JS 1.1 are out now! Check what’s new Read More

blog image
Ext JS

How to Quickly Customize Ext JS Data Grid (Part 4/6) – Using Flexible Methods

In this fourth article of the 6-part “Ext JS Grid Customization” blog series, we focus on using flexible methods to customize grid data. If you missed reading the previous posts, take a quick read here: Customize using Built-in Grid and…

blog image
News

FusionCharts Brings Powerful JavaScript Data Components to the Idera Family!

Idera, Inc., the parent company of Sencha and many other exciting software productivity brands, recently announced the acquisition of FusionCharts, a market leader in JavaScript charting components and tools. FusionCharts will join Idera’s Developer Tools business unit that includes Embarcadero,…

blog image
Ext JS

How to Quickly Customize Ext JS Data Grid (Part 3/6) – Row Editing Methods

In this third article of the 6-part “Ext JS Grid Customization” blog series we focus on using row editing methods to customize a data grid. If you missed reading Part 1 and 2 of the series, take a quick read…

blog image
日本語

Ext JS Data Gridをすばやくカスタマイズする方法(part 2/6)

全6回構成の「Ext JS Data Gridカスタマイズ」ブログシリーズの最初の記事では、GridやColumnのプロパティをカスタマイズしてデータグリッドを外観や機能を変更する方法を説明しました。この記事ではデータ表示用のメソッドグリッドを用いてデータグリッドをすばやくカスタマイズする方法を説明します。 ここで使用するグリッドの例ではNBA 2020プレイヤーのレーティングを表示します。 このブログでは、「グループ化のメソッド」を使用したグリッドのカスタマイズについて説明します   グループ化されたグリッド グループ化されたグリッドは、フィールドのデータによるグループ化を実現し、行/列データの見やすい表示を提供します。 この機能を有効にするコードは次のとおりです。 1.グリッド構成で grouping の features をアクティブにします。 features: [{ ftype: 'grouping' }], 2.ストアのコンフィグで groupField を定義します。 store: { model: 'Player', //グループ化するフィールドを指定する groupField: 'team', data: [/* ... */] }, 3.グリッドをカスタマイズします(ヘッダのカスタマイズやサマリ行の追加を行います) features: [{ ftype:…

blog image
日本語

Ext JS Data Gridをすばやくカスタマイズする方法(part 1/6)

Ext JS Data Gridは、高速で強力かつ柔軟に利用できます。Ext JSを使用すると、ユーザーは自分のアプリケーションに合わせてグリッドの外観をすばやくカスタマイズできます。全6回構成のブログシリーズでExt JS Data Gridをカスタマイズするさまざまな方法をカバーします。 (more…)

blog image
Architect

Webinar Q&A: Sencha Architect – The Ultimate Visual App Builder

Last week, we conducted an in-depth demonstration on Sencha Architect, a visual app builder for Ext JS applications. The webinar was very well attended and we received many interesting questions during the course. This post provides answers to those questions.…

blog image
Ext JS

How to Quickly Customize Ext JS Data Grid (Part 2/6) – Grouping Methods

In the first blog of this 6-part “Ext JS Grid Customization” blog series, we saw a few different ways to use built-in grid and column properties to customize a data grid. This blog demonstrates the use of built-in data display…

blog image
Ext JS

How to Quickly Customize Ext JS Data Grid (Part 1/6) – Built-In Grid & Column Properties

Ext JS Data Grid is lightweight, powerful, and adaptable. Users can quickly customize the look and feel of the grid with Ext JS to suit their application. In a 6-part blog series, I'll go over various methods for quickly customizing…

blog image
Ext JS

Quick Survey: Help us Improve Ext JS Onboarding Capabilities

We often hear that a key challenge in the Ext JS ecosystem is finding new developers. When organizations look to staff open roles or new projects, it is logical to request experienced developers. The same is true for Ext JS…