doesn't appear to be a problem in Ext 6.2.0
Type: Posts; User: caballero
doesn't appear to be a problem in Ext 6.2.0
I'm having this issue with EXT JS 5.1.2
The "buffer: 100" trick is a nice easy work around, but this should be fixed by now.
To get a column layout in dataview I just altered the css.
Try putting this in the dataview css.
div.dashboard-dataview {
display: flex;
flex-direction: column;
flex-wrap:...
I'm not seeing the same jump that i was seeing with previous versions.
Try this fiddle and switch between the versions.
https://fiddle.sencha.com/#fiddle/4rv
My tests show that they fixed the...
What did you do to get past this?
I'm running into the same thing with Extjs5
If you are using this with 3.4.x, this worked for me:
store.reader.meta.root = 'records';
delete store.reader.ef;
store.reader.buildExtractors();
Thanks all for getting me 95% there.
Bug not fixed in 5.1.0
Bug not fixed in Ext Js 5.0.1
uuhg!
Ext version tested:
Ext 4.2.0
Ext 4.2.1
Ext 4.2.2
Ext 5.0.0 beta
Browser versions tested against:
FF 28.0
Safari 7
If I require Ext.dom.Query, this fiddle example works as before.
Which is to say it still has the reported bug.
I would think that Sencha would be motivated to fix bugs in the Core.
rewritten...
This example seems to be entirely broken in Extjs5 beta.https://fiddle.sencha.com/#fiddle/18v
Is there a work around?
Ooops, Sorry! Scratch that. Here is the listener that fixed my issue.
cellclick : function(view, cell, cellIndex, record, row, rowIndex, e) {
//e.stopPropagation();
...
I added listeners to the grid. Either the select listener or the beforerowselect listener did it for me.
listeners: {
select: function() {
console.log('select');
return...
Thanks for the reply.
I did try that but it didn't work.
I did find a workaround on stackoverflow.
/******* fix tooltip width issue with safari 7 Mac for extjs4.2.2 *******/
if...
Is there a work around for 4.2.2?
I'm having this issue in 4.2.2 as well.
Has anyone had any success with a workaround?
This link goes no where.
Would love to know what link is now that forum has changed.
So, what version can we expect this to be fixed in?
did you add the StatusBar cordova plugin?
Don't know if this would help, but you can get rid of the status bar and take the margin off of the viewport.
Small changes to the css can have surprising repercussions.
Ext version tested:
Ext 4.2.0
Ext 4.2.1
Ext 4.2.2
Ext 5.0.0 beta
Ext 5.0.0
Ext 5.0.1
Ext 5.1.0
Browser versions tested against:
LesJ and Myself are not having the issue with IE9 or IE10.
We're seeing an issue with Firefox mac version only.
I've seen nothing that would indicate that the higher powers are even aware that...
Hey Ben,
Thanks for the reply.
I've updated the jsfiddle example here
http://jsfiddle.net/mkASb/3/
As you'll see, this works.
BUT it will not work with paging.
All pages start with #1.
I can't get the solution here to work.
I've set up a jsfiddle here for a test.
http://jsfiddle.net/mkASb/
Is there a solution for updating the rownumberer column after a insert or delete??