Questions tagged [extjs6-classic]

The classic toolkit provides traditional Sencha Ext JS application support. This includes support for most desktop browsers, tablets, and touchscreen enabled laptops. The classic toolkit is ideal for developers seeking legacy browser support (IE8+) with traditional Ext JS componentry.

395 questions
9
votes
1 answer

How to create Placeholder in Extjs when item is dragged

I want to create a placeholder in Extjs when you drag items from one panel to another panel. Items are dataView records. Ext.application({ name: 'Fiddle', launch: function () { simpsonsStore = Ext.create('Ext.data.Store', { storeId:…
Ajay Thakur
  • 1,066
  • 7
  • 23
8
votes
3 answers

ExtJS 6 configure Ext.ux

I'm trying to use the color picker under ext/packages/ux/classic/src/colorpicker So I set my requires : requires: [ 'Ext.plugin.Viewport', 'Ext.window.MessageBox', 'ThemeDemoApp.view.main.MainController', …
jaumard
  • 8,202
  • 3
  • 40
  • 63
7
votes
2 answers

How to load or set value in tagfield

I am using a tagfield as a widget column. I am selecting few values from drop down and then saving it. Again when I open I wanted my selected value should be present there in tagfield. It is only coming only after tagfield getting focused. What I am…
David
  • 4,266
  • 8
  • 34
  • 69
6
votes
3 answers

updateLayout() causing parent container to scroll to top

calling updateLayout() is causing the parent container to "jump" to the top. Setting the viewconfig on the Ext.Container.container does not seem to help viewConfig: { preserveScrollOnRefresh: true },
Shain Padmajan
  • 424
  • 3
  • 9
6
votes
1 answer

Extjs 6 - modern toolkit ui-mixins build error

I have an Extjs 6 workspace with two packages (one for classic and one for modern) and a sample app in it. I have no problem styling the classic package components with the corresponding ui-mixins, ex: @include extjs-panel-ui();. However, when I…
6
votes
0 answers

ExtJs 6 Htmleditor in propertygrid

I want to use HtmlEditor in PropertyGrid and my framework version is ExtJS 6.0.0.640 . But, I have a problem with this... When I use Htmleditor to propertygrid a conflict to display. Yet, I change framework version to 4 not problem. For example,…
5
votes
1 answer

A combobox that auto-corrects the value

I have a combobox in which one can select a certain time span, e.g.: 5 minutes 15 minutes 1 hour 2 hours 1 day 2 days 1 week 2 weeks It always transmits the number of minutes to the server, but the user wouldn't understand what "10080" means…
Alexander
  • 19,906
  • 19
  • 75
  • 162
5
votes
1 answer

How to Drag Name1 To Name 6 panel

How to drag a panel item from another panel? For example: I want to drag Name1 To Name 6 panel. When I tried by pressing shift+mousescrollkey, then it loose dragging item. Thanks in advance :) Fiddle: …
Ajay Thakur
  • 1,066
  • 7
  • 23
5
votes
2 answers

Nested Grid not generating in Ext JS 6.2

Hi Techies, I have created the nested Grid in Ext JS 6.2 with the help of "Rowwidget" plugin. However I have get the outer Grid. But, it does not shown the inner grid. I followed this Sencha code example My code avaiable in: Sencha…
5
votes
2 answers

ExtJs 6 stores config on Ext.app.Controller not working

I just noticed that stores config http://docs.sencha.com/extjs/6.0/6.0.2-classic/#!/api/Ext.app.Controller-cfg-stores on Ext.app.Controller is not looking in the right path (happens the same with views config). e.g…
code4jhon
  • 5,725
  • 9
  • 40
  • 60
5
votes
1 answer

What is the correct substitute for doLayout in ExtJS 6

So doLayout was removed from Ext.Container in ExtJS 6 and I'm trying to figure out what's the proper substitute of it. Or is it just not necessary at all to do a call to a method to refresh the layout ? and I'm using updateLayout but I'm not sure…
code4jhon
  • 5,725
  • 9
  • 40
  • 60
4
votes
2 answers

Event that fires once the store has data

I have a proxy store that fills through two different ways - either via loadData, or via load. I have certain actions that should take place once the store is filled; namely, a certain record should be searched and…
Alexander
  • 19,906
  • 19
  • 75
  • 162
4
votes
2 answers

ExtJs 6.2 classic does not work with Firefox and a touchscreen

ExtJs 6.2.0 does not work on Firefox if the screen is touch enabled. I noticed the problem using the classic version of the framework, I cannot tell if the modern version is also affected. This is the exact problem: If the screen is touch enabled,…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
4
votes
4 answers

ExtJS 6 - How to upload a file without using form?

Ext JS provides fileuploadfield which is bundled with a button to browse local files. I just need to upload a file using as soon as it is selected from local instead of using a submit button in order to trigger the post process. Could not find an…
talha06
  • 6,206
  • 21
  • 92
  • 147
4
votes
0 answers

Disable panel horizontal scroll when text is entered in textfield

I want to disable horizontal scroll of panel when someone enter text in text field. First problem: Currently problem is when you enter text in any textfield and press right arrow key from keyboard (keyCode = 39) then panel horizontal also move in…
Ajay Thakur
  • 1,066
  • 7
  • 23
1
2 3
26 27