-
9 May 2011 8:34 AM #1
Make child Panels unselectable Ext-Js 4.0
Make child Panels unselectable Ext-Js 4.0
I have a Main Panel with two or more child panels.Child Panels should not be selectable.Even if child is selected,only the Parent should be selectable/Highlighted.Is there any property/any way to do it.
-
10 May 2011 12:23 AM #2
Have you tried childPanel.el.unselectable() ?
ExtJS 4 plugins:
varheaders - short/normal/long column header
clearbutton - mouseover clear button in text field
Blog: fit4dev
ExtJS User Group Hamburg
-
10 May 2011 2:11 AM #3
Ya tried that but still its the same behavior
-
22 Oct 2012 7:18 AM #4
Add and apply the following css rule to each panel:
Code:.unselectable { -webkit-user-select: none; /* Chrome all / Safari all */ -moz-user-select: none; /* Firefox all */ -ms-user-select: none; /* IE 10+ */ /* No support for these yet, use at own risk */ -o-user-select: none; user-select: none; }
Similar Threads
-
get size and position of child panels
By prajeesh_bs in forum Ext 3.x: Help & DiscussionReplies: 5Last Post: 26 Apr 2011, 11:08 PM -
can't make button text unselectable
By MichaelOstrovsky in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 1 Jul 2010, 7:19 AM -
FormPanel validation with child Panels
By EagleEye666666 in forum Ext GWT: Help & Discussion (1.x)Replies: 0Last Post: 19 Jan 2009, 3:43 AM


Reply With Quote