Please consider this file:
https://docs.sencha.com/extjs/6.7.0/modern/src/Panel.js-1.html
Specifically the following lines from load method of Ext.field.Panel:
if (options.waitMsg)...
Type: Posts; User: r_honey
Please consider this file:
https://docs.sencha.com/extjs/6.7.0/modern/src/Panel.js-1.html
Specifically the following lines from load method of Ext.field.Panel:
if (options.waitMsg)...
Hi Kumar,
Here's the fiddle that reproduces this issue:
https://fiddle.sencha.com/#fiddle/2s8a
I am facing similar issue with ExtJs 6.7.0. The following is the closest I could get, but still not able to reproduce in Fiddle:
https://fiddle.sencha.com/#view/editor&fiddle/2rmh
Locally in my...
Consider the following code-base from ExtJs 6.7.0 Modern Ext.form.Panel's class:
beforeAjaxSubmit: function (form, options, successFn, failureFn) {
var me = this,
url = options.url ||...
Please ignore, it was an issue with our custom Material derived theme.
We have a large enterprise application that worked fine with all browsers, desktop and mobile with ExtJs 6.5.3 modern toolkit. We recently updated our cose-base to ExtJs 6.7.0 modern and suddenly...
Here's the error message that gets logged everytime I launch themer:
Hi I continue to face this issue and my work is stuck. I did not receive any communication from support team either.
Hey, Since the last update i can't use my sencha themer, Its not showing anything when i open it.
Previously when i start themer i can see my created project themes and can start work on any of...
I created a tbar using modern toolkit buttons and text boxes are visible there . But it is not responsive . I need to create it as responsive .
Hi, I am trying to do a Ext.Config.merge as per this thread:
https://www.sencha.com/blog/using-sencha-ext-config/
Basically we have a lot of remote combos in our application, and I am trying to...
Hi ateodorescu, I was referring to the classic version of the toolkit as well as the add-on. Sorry, should have mentioned that earlier.
There's no Ext.concat method referenced by merge inside autoGenerateKey config option for Ext.exporter.data.Base.
The same needs to be changed to Ext.merge.
Here's an override to make TimeField work:
Ext.define('Ext.ux.TimePickerOverrides', {
override: 'Ext.picker.Time',
createStore: function () {
var me =...
Well just included the override js somewhere in your scripts after the ST scripts.
Hi Wayne, thanks for the feedback. I might NOT visit it again. I would suggest you have a look at these links which should help you integrate and assemble most of what you need:...
Hmmm.. okay thanks evant, I somehow overlooked that aspect. This code is undergoing Ext 3 to Ext 4 upgrade in phases and this worked in Ext 3 perfectly. Ext 3 produced the following parser method for...
I was getting an exception in my application and when I analyzed, it was because of Ext.Date.parse returning undefined for a date string I passed to it (using Ext 4.1):
...
Hi Jamie, this still seems to be an issue in 2.0.1.1
The same sample code as in the opening post reproduces it. Let me know if I should create a new thread as this has been marked fixed.
Yes and no.
See when you are using NestedList, in most use-cases, you want to tap the item as well as go into it (e.g. consider folders in NestedList, tapping brings up files in an adjoining...
Here's the onItemTap method of NestedList:
onItemTap: function (list, index, target, record, e) {
var me = this,
store = list.getStore(),
node =...
Hi bdvr, I think you have a very easy solution:
Ext.define('Ext.override.dataview.element.List', {
override: 'Ext.dataview.element.List',
getItemElementConfig: function (index,...
Hi Tommy, the fix introduces another issue.
Consider the following sequence of events where you have a store bound to a DataView:
var records = [{name: 'P1', email: '[email protected]'},...
Okay I found the solution myself. Here are a couple of simple overrides that would do what I mentioned above:
Ext.define('Ext.override.dataview.element.Container', {
override:...
This is a sample rendered markup for a List item:
<div class="x-list-item x-item-selected" id="ext-element-454">
<div class="x-list-item-label">
<div...