Questions tagged [extjs6]

Sencha ExtJS is a JavaScript framework for building Rich Internet Applications (RIAs).

Sencha ExtJS

Sencha ExtJS provides a complete object-oriented framework for creating a desktop-like application that runs in a web browser or packaged as a native app. It manages object lifecycle, layouts, theming, data storage, ajax communication and a large library of component-driven UI widgets including charting.

Originally built as an add-on library for YUI, it has a modular architecture that developers can extend using JavaScript.

Resources

Notable Historical Events

  • 01-Jul-2015: With Ext JS 6, Sencha introduces a single framework for creating applications that run across all types of devices, from phones to tablets to desktops.

  • 15-Apr-2014: Along with the release of version 5.0 Sencha Inc. officially dropped support for Internet Explorer versions 6 & 7 and only support 8 in "standards" mode. This marks a shift in favour of modern web-standards.

  • 15-Jun-2010: The merger of ExtJS with JQTouch and Raphaël was announced forming a new organisation called Sencha Inc. ExtJS continues to be available as a main product on the Sencha website together with Sencha Touch, Sencha GWT, Sencha Architect, Sencha Animator and Ext Core.

Version History

964 questions
0
votes
2 answers

Checkboxgroup height too small - Checkboxes not visible

The size of my checkboxgroup is not enough to show all checkboxes. Here is a fiddle: https://fiddle.sencha.com/#fiddle/1169 The checkboxes below "Show these detail columns" are not completely visible. I would like to change that, but I don't find my…
Alexander
  • 19,906
  • 19
  • 75
  • 162
0
votes
1 answer

Filter an already filtered store

I was wondering if there was any way to filter an already filtered store. Let's say I've got an grid and two filters(F1 & F2). For now, what I'm doing is if(!F1 & !F2) { grid.store.load().filterBy(function(record, id){ /*** My…
So4ne
  • 1,124
  • 17
  • 38
0
votes
1 answer

ExtJs 6 Store not visible in Grid

I'm trying to port existing application from ExtJs 4.2.1 to 6.0.1 The problem that in debugger I see that grid has 'ext-empty-store' store instead of 'store.accounting.Quota' I can load the store directly in panel activation listener by doing …
AlexeiP
  • 581
  • 1
  • 10
  • 26
0
votes
2 answers

getStore() in ExtJS returning undefined

I have read many other posts with this same question, but none seem to give me the answer I need to fix the issue. I have defined my datastore as below: Ext.define('TestApp.store.tbData', { extend: 'Ext.data.Store', alias: 'store.tbData', storeId:…
Navvy
  • 237
  • 3
  • 9
  • 23
0
votes
2 answers

build extjs custom theme

I created custom theme by theming system guide, but don't know how to use new theme in my project. I am not using mvc, mvvm. In my project i connect extjs files in this way:
user5094402
0
votes
1 answer

Icons and arrows in all tree columns

I'm working on a tree in Extjs 6 with 3 columns, but I'm getting icons and arrows in all columns. It doesn't look like this example. I know that I could hide them with CSS, but they shouldn't be there. What am I doing wrong? This is how my tree…
0
votes
1 answer

Dynamic cell editors in grid panel

I have a grid panel with columns 'code' and 'value'. The editors of cells in the 'value' column is determined by the values in the 'code' column. How do i achieve this? I have tried the following: plugins: { ptype: 'cellediting', …
0
votes
1 answer

Viewmodel attribute 'links' cannot find the model type

While trying to execute the following code on show() we get an exception that the links attribute cannot find the model either if it is specified by class or if it is specified by entityName. Ext.define('myapp.view.film.FilmsViewController',…
George Pligoropoulos
  • 2,919
  • 3
  • 33
  • 65
0
votes
2 answers

How to support Desktop Website for Tablets?

We have ExtJS running application for desktop browser precisely..Last month we have upgraded to ExtJS 6 successfully..But right now we are facing some of challenges in tablet support..We are expecting same website will work for Tablet also.. I'm…
Abhijit Muke
  • 1,194
  • 3
  • 16
  • 41
0
votes
1 answer

Error when displaying tasks from mpp file to extjs tree grid in asp.net

Extjs code: Ext.Loader.setConfig({ enabled:true }); Ext.application({ name: 'Importtool', launch: function () { Ext.define('Task', { extend: Ext.data.Model, fields: [ { name: 'task',…
0
votes
1 answer

Does the Exporter plugin work in Extjs 6.0.1?

I saw a thread that claims the Extjs 6 exporter plugin is broken. What's the deal with this plugin? Please let me know your thoughts on the plugin because I want to use this plugin for exporting grid data to Excel.
user3629299
  • 37
  • 1
  • 10
0
votes
2 answers

Adding Icon on ExtJs button

I am using ExtJs 6.0.1 I haveadded a button and set icon on button using css as follows .button_merge_style { content: url(http://localhost:3545/ServiceHealthApp/HealthIcons/ServHL.png); } This is working fine but as you can see I have used…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
0
votes
0 answers

addFeatures doesn't seem to be taken in my code

I'm working on openlayers 3 and ExtJS 6. I have a vector who is loaded with a GeoJson. I clear it and I want to add some new features once it's cleared. My new data are provided by a store. So this is what I want to add in my vector :…
So4ne
  • 1,124
  • 17
  • 38
0
votes
1 answer

itemId on TabPanel's tabs is being "deleted" by the framework?

I'm trying to fiddle around with the stock application that SenchaCmd 6 produces when doing a sencha app generate and I'm adding click events on the side menu tabs as such: Ext.define('UserManager.view.main.Main', { extend: 'Ext.tab.Panel', …
Francis Ducharme
  • 4,848
  • 6
  • 43
  • 81
0
votes
1 answer

Not able to see Main.js when using Sencha CMD6.X

I am using sencha cmd for the first time and i am following the sencha document to set up the application. I am able to follow the documentation and after I create the application, I can only see the "MainController.js" and "MainModel.js" under the…
user2380811
  • 55
  • 1
  • 7