Check this, How to use ExtJs inside React Js Integrating ExtJs in React: A Step-by-Step Guide

Integrating ExtJs in React: A Step-by-Step Guide Reference: Sencha Why Integrate ExtJS with React? Before diving into the integration process, let’s understand why you might want to combine React with ExtJS. ExtJS is renowned for its extensive set of UI components and rich feature set, making it an excellent choice for complex user interfaces. React, … Read more

sencha loading icon before app startup screen

In the index.html,  add a div in the body: [html] <body> <style type="text/css"> #loading-mask { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: url(resources/img/indicator.gif) no-repeat; text-align: center; } </style> <div id="loading-mask"></div> <script type="text/javascript" src="app.js"></script> [/html]   In app.js, in the launch function, once all the app initialization is finished I remove the … Read more

Extjs Send extra param with pagination

bbar: new Ext.PagingToolbar({ pageSize: 6, id: ‘grid-bbar’ , store: store, listeners: { beforechange: function (tb, param) { var section= Ext.getCmp(‘rsection’).getValue(); var section1= Ext.getCmp(‘newID’).getValue(); param[‘section1’] = section1; param[‘section’] = section; } }, displayInfo: true, displayMsg: ‘Displaying topics {0} – {1} of {2}’, emptyMsg: “No topics to display” })