Questions tagged [extjs6-modern]

The modern toolkit provides universal HTML5 application support for all modern browsers (IE10+) from desktop to phone. The modern toolkit is ideal for developers seeking a cross-browser, cross-device experience for their users.

150 questions
0
votes
1 answer

Extjs6.2 Modern toolkit- Extend a textbox

I am still learning EXTJs and one of the thing I was trying to to was extend a component. Below is my example: Ext.define('MyApp.view.CustomTextField',{ extend: 'Ext.field.Text', xtype: 'customtextfield', config: { fieldID: null, langID:…
Learner
  • 23
  • 5
0
votes
1 answer

Sencha 6.5 (modern) how to dynamically change the items in a menu in a title bar?

Well considering a grid I create in my application: { xtype: 'ordergrid', itemId: 'ordergrid', titleBar: { shadow: false, items: [{ align: 'right', xtype:…
paul23
  • 8,799
  • 12
  • 66
  • 149
0
votes
1 answer

Extjs - How to invoke parent view controller methods from child view controller?

I added a listener onParentPagePopupCommit for button in popup which was declared in parent view controller and added the popup in view port, now the view model bindings are working as expected, but not sure how to invoke the parent view controller…
Gowtham S
  • 923
  • 14
  • 39
0
votes
1 answer

extjs 6 modern combobox with infinite scrolling

Based on this comment from mitchellsimoens at sencha forums i tried to implement an infinite scrolling combobox in extjs 6.5.2 modern. The thing is that setting the combobox store to a virtual store produces this error: Uncaught TypeError:…
Zoti
  • 822
  • 11
  • 31
0
votes
2 answers

Ext JS 6.5.2 Comobobox and ArrayStore load issues

Here is an example of what I'm trying to do with Sencha Ext JS 6.5.2 Modern: https://fiddle.sencha.com/#view/editor&fiddle/2b2i I am trying to use an ArrayStore to load some values into the combobox. When I click on the drop down arrow, or search, I…
Sam
  • 185
  • 1
  • 3
  • 14
0
votes
2 answers

Ext.MessageBox title with font awesome icon

I was trying to set a fontawesome icon inside an Ext.MessageBox title and i managed to accomplish it using the code below: Ext.Msg.show({ //iconCls: 'x-fa fa-times-circle', title: ' Error…
Zoti
  • 822
  • 11
  • 31
0
votes
1 answer

extjs 6.5.* (1, 2) combobox bug on iPad and Google Chrome

While testing my webapp on an iPad (ios 10.3.3) i came up to something that looks like a framework bug. All the comboboxes with queryMode set to local were not opening the dropdown popup on combobox's button click. (Tested on Chrome v.…
Zoti
  • 822
  • 11
  • 31
0
votes
1 answer

ExtJS 6.x Modern Component Focus

In ExtJS 6.x Modern, how do you make a component that can focus. I have tried using both tabIndex: 0, focusable: true and have read through all the documentation and code of https://docs.sencha.com/extjs/6.5.2/modern/Ext.mixin.Focusable.html but…
Tony J Watson
  • 629
  • 2
  • 9
  • 20
0
votes
0 answers

sencha touch modern developer mobile terminal, textfield display exception

The development of the mobile terminal landing interface, the runtime found that the text input box display abnormal. If you put the code in toolbar to show no problem, the house ah formPanel shows weird, the effect is as follows enter image…
Mr. Wu
  • 33
  • 9
0
votes
1 answer

Sencha ext.js, create form on the fly

I'm trying to follow the tutorial of extjs about adding a form on click. Now the "twist" is that I directly wish to create a more structured approach. So I'm using Ext.define to create both a grid and a form, for the grid. The…
paul23
  • 8,799
  • 12
  • 66
  • 149
0
votes
2 answers

Extjs Modern Grid column cell tool conditional iconCls

In a grid column config, I have a cell tool for which I'd like the iconCls of the tool to be conditional on the row record data. },{ text: 'Favorite', //dataIndex: 'favorite', width: 80, …
gbegley
  • 2,609
  • 5
  • 29
  • 41
0
votes
1 answer

ExtJS 6.x (6.5.2) Modern Custom Component

I would like to create a custom component in ExtJS 6.5.2 Modern. None of the documentation makes it clear how to do this. The custom component is to create a link within a div... e.g. { xtype: 'test-link', urlPart:…
Tony J Watson
  • 629
  • 2
  • 9
  • 20
0
votes
1 answer

ExtJs 6.5.2 modern - Remove loadmask message

I am using a loadmask that the html property holds all the loading content. The problem that i am facing is that even if message property's value is an empty string, message allocates space inside the loadmask producing something like a dash on the…
Zoti
  • 822
  • 11
  • 31
0
votes
1 answer

Extjs Modern Simple Button in Tab Panel Tab Bar

I have a Tab panel with multiple Tabs in it. Now I want to add a simple button with an action to the tab bar. When clicked it should not open a Tab like the other ones, just execute a javascript function. How is this possible in Extjs?
0
votes
1 answer

How to use extjs Carousel for tab items

I have 3 items in tabs and want to show dots navigation like extjs Carousel. Here is my code Modified the code using layout card indicator. So indicator works for card same card content and indicator functionality required for tabs as I had added…
Sagar
  • 1,387
  • 2
  • 13
  • 22