I have a somewhat similar problem. Created two bug threads on the lastest version and they do not show up even tho I provided enough to reproduce them. If for some reason they got rejected I'd like...
Type: Posts; User: gulty
I have a somewhat similar problem. Created two bug threads on the lastest version and they do not show up even tho I provided enough to reproduce them. If for some reason they got rejected I'd like...
As the title says, tooltips are no longer displayed incase you enable a disabled button programmatically.
Ext.define('X', {
extend: 'Ext.panel.Panel',
initComponent: function() {
...
Hello,
while migrating from 5 to 7 I stumbled over a major bug: Using Ext.menu.Menu it's not possible to scroll at all in some browsers (e.g. Firefox). In chrome scrolling is partially working...
Thanks a lot for the clarification. Makes more sense to me now and I assume "EXTJS-28286 - Bug for panel updateLayout method is not working like classic toolkit" should be closed then.
How is it supposed to work? Imagine you have to apply a config onto a view, e.g. title, width etc. changed. I assume changing those attributes and re-rendering the layout once is bettter than using...
Hello,
thanks for your response. I was already aware of the setWidth function working as expected.
However, the 2 questions remain:
1) Why is updateLayout working properly in classic while it's...
Hello,
I tried to play around with the admin dashboard: https://examples.sencha.com/extjs/6.7.0/examples/admin-dashboard/
My goal is to use a pure modern app for desktop/mobile which is why I...
I recently saw a video about a universal modern app where people were suggested to use the modern toolkit for desktop and mobile applications. I'm rewriting an Ext5 + Sencha touch app so I thought...
updated the fiddle, stupid typo, sorry, but it doesn't change the outcome.
E:
If I overwrite the load function of the store and fire an event called load, all the listeners seem to work.
, ...
Hello,
I have a List object with a viewmodel/controller and an ajax proxy loading data. I try to automatically select a row on certain conditions (e.g. last opened or first). With ext5 I had no...
That's interesting, idd. The docs/explanations/changes kinda lack regarding these kind of changes.
Anyway, select seems to return "Cannot read property 'getAt' of null". Where is the correct place...
I see, that makes sense.
Now for my example I use a list instead of a grid. I changed your fiddle:
2g39
1)As you can see in the console, when hovering over the scrollbar the error I was...
I mean, consider your data1.json is looking different. 1 more nested level, like:
{
"result": {
"success": true,
"total": 1000000,
"users": [
{{#repeat 25}}...
Thank you for your reply. For me it worked with either using model, xtype or type. But when using type I get these weird internalid of null errors. Also, your rootProperty is actually on the root...
Hello,
I'm using ext 6.5.3 modern and try to get a huge, infinite list from an ajax virtual store.
When referencing the proxy and reader within the viewmodel everything works as intended. But if...
same issue in 6.5.3
Hey,
is it possible to have a cellediting grid where the editor itself is wider than the column?
Example:
https://fiddle.sencha.com/#fiddle/reg&view/editor
I want a textfield to be bigger...
Hello,
I'm currently working on a cellediting grid with some extra usability adjustments.
I have a textfield cell which contains a textareafield editor in case a multiline flag is set.
Example...
I know it's possible to select on tab. But exactly why does pressing enter/escape lose the focus? We got a large software and lots of data to be entered. Some cells might not be filled, some cells...
Actually I posted the ext 6.5 example so the "bug" is present there as well. After entering a value and pressing ESC(cancel)/ENTER(save) for the cell I expect it not to lose the tab navigation on the...
Hello,
I have an issue with the usability of the cellediting plugin.
Example:
http://examples.sencha.com/extjs/6.5.1/examples/classic/grid/locking-group-summary-grid.html
Everything works...
I have a temp solution for those who are interested. I personally don't like it as the translate method will be called twice for touch devices but it records the x/y values correctly in the...
Yea, I think the Ext.util.translateble.Abstract is the problem in combination with the TouchScroller.
The translatable has this.x and this.y not updated when scrolling with the mousewheel. It's...
Well, I added some checkboxes to the example of yours and there is no issue with clicking them for some reason.
I'm using ext 5.1.3.
The problem is that within the TouchScroller.js the correct...
Another useful information: After setting a breakpoint in the onDomScroll function of the touchscroller the position.y is overwritten with dom.scrollTop.
When I'm simply scrolling the scrollTop...