Questions tagged [extjs7]

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

Version 7 of the Sencha ExtJS framework.

Previous versions: ExtJS6

169 questions
0
votes
0 answers

How to handle unexpected server replies in ExtJS Store?

I read many topics and many pages of documentation but can't find any easy solution. How to handle in ExtJS (7.0) Store any unexpected replies from server? For example, when there's no correct JSON data, but there are many PHP error messages. Here…
0
votes
0 answers

setReadOnly and SetDisabled not working Ext JS 7.0.0

I have a window with a form in it and pops up on click of an item in the grid. Inside the window, there is an edit button that would make the fields to setReadOnly(false). Here is the button: onEdit: function () { this.moviePopupWindow =…
pokoyo
  • 19
  • 5
0
votes
1 answer

initComponent is not working for Ext.panel.Panel

I currently playing with this embedded fiddle in the documentation https://docs.sencha.com/extjs/7.6.0/classic/Ext.grid.Panel.html: Ext.create('Ext.data.Store', { storeId: 'simpsonsStore', fields:[ 'name', 'email', 'phone'], data: [ …
leonard.javiniar
  • 539
  • 8
  • 25
0
votes
0 answers

Create contextmenu as combination of main menu-items and other menus?

I have a grid with multiple tools-items and each tools-item has its own menu. var gearMenu = Ext.create('Ext.menu.Menu', { items: [{ text: 'item 1' }, { text: 'item 2' …
Arno Voerman
  • 87
  • 2
  • 9
0
votes
1 answer

Ext.Widget "ui" config option valid values, modern toolkit

is there any list of the valid values for the Ext.Widget "ui" config option available? https://docs.sencha.com/extjs/7.4.0/modern/Ext.Widget.html#cfg-ui I know, some of them are 'alt', 'raised', 'solo', but the documentation does not provide any of…
CSM MX
  • 11
  • 2
0
votes
3 answers

Ext.Ajax.extraParams: Add a new parameter sent by default

I have a bigger application written with ExtJs 7. Now I need to add an extra-Parameter to all ajax-calls and ajax-store-calls from a certain point on. To change all ajax-calls and all stores would be a lot of work, so the idea is to define an…
Werner
  • 1,695
  • 3
  • 21
  • 42
0
votes
1 answer

Getting cannot read properties of undefined (reading 'getAnimatePolicy') in extjs 7.5

I have my component that extend : 'Ext.tab.Panel' and when I add that to my container using container.add(createView) where createView is the component thats extending Ext.tab.panel it throws error cannot read properties of undefined (reading…
Bilal Ahmed
  • 76
  • 1
  • 1
  • 8
0
votes
1 answer

ExtJs classic - deep bind to an array value is not re-evaluated when the array is added items

I created this fiddle where you can see what happens: https://fiddle.sencha.com/#view/editor&fiddle/3ndt Ext.application({ name: 'Fiddle', launch: function () { Ext.define('MyViewModel', { extend: 'Ext.app.ViewModel', …
boggy
  • 3,674
  • 3
  • 33
  • 56
0
votes
0 answers

Extjs styles are not displayed correctly on browser zoom

When the browser window is zoomed, the Extjs styles are not displayed correctly. browser: google chrome Version 112.0.5615.50 (Official Build) (64-bit) zoom level: 125% extjs version: 7.6 toolkit: classic theme:…
omid
  • 400
  • 3
  • 19
0
votes
0 answers

setValue is not passing values to http request in Ext JS 7.5

I wanted to pass all form values including set values to http request for Update record but its passing only modified values in Ext JS 7.5.1. How can I pass all form values to https payload? I tried this: text: 'Submit', handler: function()…
pritee
  • 1
0
votes
0 answers

ExtJS 7 modern application freezes during a scroll when packed as Cordova/Android app

I have a simple Cordova application, which includes an ExtJS 7.4 (modern toolkit) grid containig about 50 rows. It gets build normally and installs and starts normally on my Android phone. However, sometimes there is a problem with the scrolling…
CSM MX
  • 11
  • 2
0
votes
0 answers

sencha.cfg is Missing When Generating a Package Using Sencha CMD

This guide from Sencha, contains an instruction on how to generate a workspace and a package. In the section "Anatomy of a Package" it is mentioned that the package folder is expected to have .sencha/package/sencha.cfg and package.json as they are…
leonard.javiniar
  • 539
  • 8
  • 25
0
votes
2 answers

ExtJs panel ViewModel getStore() call returns null instead of returning local ajax store object with URL bound to ViewModel data member

To reproduce this issue, I created a fiddle: https://fiddle.sencha.com/#view/editor&fiddle/3mk0 . The steps to reproduce are as follows: Open your favorite browser and open the debugging tools to be able to view the JavaScript console Navigate to…
boggy
  • 3,674
  • 3
  • 33
  • 56
0
votes
2 answers

Extjs classic: Textarea with resizable=true cannot be resized

I created this fiddle: https://fiddle.sencha.com/#view/editor&fiddle/3mh2. If you run it, you'll see you cannot resize the textarea even though it has the property resizable: true. Ext.application({ name: 'Fiddle', launch: function () { …
boggy
  • 3,674
  • 3
  • 33
  • 56
0
votes
0 answers

C#/ExtJs SharpZilLib generate a corrupted zip

I'm using the library SharpzipLib to create a zip file from files in a memory stream. The issue is that the generated zip seems to be corrupted and I can't open it. MemoryStream outputMemStream = new MemoryStream(); ZipOutputStream…
AnthonyDa
  • 493
  • 15
  • 34