JS Days 2025 is now live – Join 5,000+ devs for the premier virtual JavaScript event. Register Now

Sencha Blog

blog image
日本語

活用事例: Ext JS が支える 腫瘍科/在宅医療システム

過去20年間、医療データ管理は革新的な進化を遂げてきました。モバイルテクノロジーの出現によって、医師による患者の診察記録のほぼすべてが、詳細にデジタル化されるようになっているのです。 アルゼンチンの最大級の民間医療機関アレマン病院(オスピタル・アレマン)は、医学の3本の柱、「診療」「教育」「研究」に注力し、患者にファーストクラスのケアを提供することを目指しています。その中で、医師や病院管理者、医療スタッフにとって患者データの収集と評価を簡便化するためのモダンなアプリケーションやオートメーションといった技術的側面の強化を推進しています。 (more…)

blog image
ExtReact

Supporting the Open Source Community — Sencha Sponsors Material-UI Project

As Sencha strives to create the best enterprise-grade JavaScript framework and components to lead the radical transformation in web app development, we stand behind community-oriented, open collaboration to seed innovation and take up an important goal to give back to…

blog image
Ext JS

Ext JS Outperforms Grid Competitors on Key Performance Metrics

  The overall volume of generated data has grown exponentially over the past couple of decades. As a result, modern JavaScript data grid components that manage the display and analysis of these massive data volumes have evolved. Today, there are…

blog image
Ext JS

Customer Success Story: Ext JS Powers Hospital Aleman

Over the past two decades, healthcare data management has seen a revolution—with the advent of mobile technology, nearly all aspects of doctor-patient visits are now meticulously recorded digitally.  Hospitals invest heavily in procuring key resources such as digital radiology, state-of-the-art…

blog image
Ext JS

Using D3.js components in Ext JS apps

Data visualization capabilities play a key role in modern apps. D3.js is a powerful visualization component library and can be easily integrated in Ext JS apps. D3.js provides different component types: Hierarchical Components Heatmap Component Custom Components In this post,…

blog image
Events

Reflections on Virtual SenchaCon

Sencha recently hosted the first-ever Virtual SenchaCon—a free, two-day digital event consisting of nine different presentations and demos hosted online in separate tracks. Despite being the first time we held an event like this, Virtual SenchaCon exceeded our expectations. More…

blog image
Ext JS

All About Ext JS Layouts

It was exciting to see the many attendees at Virtual SenchaCon 2020 and the wide range of topics presented. As a long-term Ext JS developer, it was a great opportunity for me to talk about and share my experience with…

blog image
Ext JS

Creating an Ext JS Login/Registration Form in 3 Easy Steps

ExtJS includes form components that allow you to quickly and easily create fully functional and validated forms. In this example, we show how to create a login/registration form with the following features in minutes using the Ext Js Javascript Web Framework, which…

blog image
日本語

Ext JS Data Gridをすばやくカスタマイズする方法(part 3/6)– 編集機能の追加や行の折りたたみ表示

全6回構成の「Ext JSグリッドのカスタマイズ」ブログシリーズの3回目の記事では、Row Editingを使用してデータグリッドをカスタマイズすることにフォーカスします。 シリーズの第1回と第2回は次のリンクよりお読みいただけます。 第1回:GridとColumnのプロパティをカスタマイズする 第2回:グループ化されたグリッド ここで用いるグリッドのサンプルではNBA 2020プレーヤーのレーティング情報をサンプルデータとして使用します。 Cell Editing/Row Editing 1. Gridのコンフィグでcelleditingのプラグインをアクティブにする plugins: { cellediting: { clicksToEdit: 1 } } 2. カラムのコンフィグでエディタを定義する(エディタは、テキストフィールド、日付フィールド、または数値フィールドを指定可能) { dataIndex: 'position', text: 'Position', flex: 1, editor: { xtype: 'combo', typeAhead: true, triggerAction: 'all', selectOnFocus: false,…