-
19 Sep 2011 5:40 AM #21
I continue with the same problem.
Happens when loading a form with loadForm and between the values must be loaded one or more toggles.
toggles.png
The toggles with NO have the corect value, the others the thumb isn't clear. It's more to the rigth. But if I click on any of them display correctly, the toggles don't look good only when loading.
Thanks
-
19 Sep 2011 8:04 PM #22
@fanny
Thanks for the screen shots, can you provided me details on your testing environment.
Is it web browser or device , which version?
Can you also provide demo code you trying.
-
20 Sep 2011 12:54 AM #23
I think I fix it, but anyway thanks for the interest.
I deletein setValueCode:this.onOrientationChange()
-
28 Dec 2011 5:31 PM #24
-
10 Jan 2012 10:03 AM #25
Another method...
Another method...
Just wanted to share a method I just cooked up.. pretty simple really, and my case only required one instance, so eager to hear suggestions-
The button:
The controller:Code:items: [ { xtype: 'button', text: 'Menu', toggle: 'open' } ]
Code:init: function(){ this.control({ 'button[toggle]': { tap: function(btn) { if (btn.toggle == 'open'){ btn.toggle = 'close'; btn.setUi('action'); console.log('Open!'); } else { btn.toggle = 'open'; btn.setUi('default'); console.log('Close!'); } } } }); }
-
1 Mar 2012 4:28 PM #26
I'm confused. I tried to implement this but the CSS validator falls over on the ::after and ::before with "The pseudo-element ::before can't appear here in the context css2".
But that's using the code on the first page of this thread, BEFORE you added the CSS3 solution.
I also can't find a way to get Eclipse to use CSS3 validation and shut up.
How do I use any of this?
-
24 Aug 2012 4:04 AM #27
Similar Threads
-
Autoload Refresh when Click the Buttom
By footballermahesh in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 8 Oct 2009, 7:28 PM -
(SOLVED) scroll dataview automatically to the buttom
By robin30 in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 21 Feb 2009, 3:06 PM -
in layout column to put button to buttom
By emredagli in forum Ext 2.x: Help & DiscussionReplies: 0Last Post: 6 Aug 2008, 2:35 AM -
add tab from a link or a buttom
By simpaulguy in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 29 Dec 2006, 11:37 AM


Reply With Quote
