-
18 Oct 2012 9:34 AM #1
Answered: Prevent row highlight in select event of list
Answered: Prevent row highlight in select event of list
I have a an Ext.dataview.List component that has a listener on the select event. How can prevent the row from being highlighted in the listener?
Here is the relevant code,
Code:control:{ "list":{ select:"myMethod" } },Code:myMethod:funcition(list,record){ event.preventDefaults(); }
-
Best Answer Posted by sissonb
Figured it out. Just return false.
-
18 Oct 2012 9:35 AM #2
Figured it out. Just return false.


Reply With Quote