You found a bug! We've classified it as
a bug in our system.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.
-
[CLOSED][4 B3] trackMouseOver : false not working
Doesn't seem like DataView reads it... Try this on a grid:
Code:
viewConfig: {
stripeRows: true,
trackOver : false
}
-
as you can see it's not used though JsDoc tells it the other way:
PHP Code:
/**
* Highlight a given item in the DataView. This is called by the mouseover handler if {@link #overItemCls}
* and {@link #trackOver} are configured, but can also be called manually by other code, for instance to
* handle stepping through the list via keyboard navigation.
* @param {HTMLElement} item The item to highlight
*/
highlightItem: function(item) {
var me = this;
me.clearHighlight();
me.highlightedItem = item;
Ext.fly(item).addCls(me.overItemCls);
},
vg Steffen
--------------------------------------
Release Manager of
TYPO3 4.5
-
This has been fixed post B3.
Twitter - @evantrimboli
Former Sencha framework engineer, available for consulting.
As of 2017-09-22 I am not employed by Sencha, all subsequent posts are my own and do not represent Sencha in any way.
-
Sencha User
same error on ComboBox on triggerclick
highlightItem: function(item) {
66971 var me = this;
66972 me.clearHighlight();
66973 me.highlightedItem = item;
66974 Ext.fly(item).addCls(me.overItemCls);
66975 },
what do you mean
has been fixed on post B3
what is B3?
thank you steve
-
Sencha User
still have problem with combobox
I still have this problem using a ComboBox
when I clicked the trigger
highlightItem: function(item) {
66971 var me = this;
66972 me.clearHighlight();
66973 me.highlightedItem = item;
66974 Ext.fly(item).addCls(me.overItemCls);
66975 },
-
Sencha Premium Member
Hi all,
I have tried this trackOver : false in viewconfig but its still not working.
Anybody tried this please reply. 