-
29 Apr 2010 11:50 PM #101
-
17 Jul 2010 6:19 AM #102
hi,Hi vtswingkid & all
Thanks for a great extension. It's always nice to see someone already wrote something that I myself wouldn't be capable of.
I have a problem,when I set "horizontal:true",the radios don't horizontal align,one up,one low.the problem can be find the demo,why?
-
21 Aug 2010 12:35 AM #103
hi,vtswingkid.
thanks a lot for the extension you provide.
here comes a tough issue I met, I use radiogroup in a form,and binding a listener to check event
on each radio item.
but after I submit the form, I find form.reset() couldn't reset radiogroup actually,
then I call the 'clear' method in the radiogroup, but I find that the listeners are all fired after only
on radio item is checked
my code is here:
Code:var radio_evalState_temp = new Ext.ux.RadioGroup({ name:'disposeType' // ,id:'win_disposeType' ,horizontal:true ,columns: 2 ,hideLabel: true ,radios: [{ value:'v1' ,boxLabel: 'v1' ,listeners:{ 'check':function(group,checked){ if(checked){ win.buttons[0].enable(); } } } } ,{ value:'v2' ,boxLabel: 'v2' ,listeners:{ 'check':function(group,checked){ if(checked){ win.buttons[0].enable(); } } } }] });
-
30 Oct 2011 9:07 AM #104
Radiogroup IE render problem solved
Radiogroup IE render problem solved
I'm using this extension, because original ExtJS RadioGroup renders very slow for many controls on one page.
I had the display problem on IE and I've solved it by commenting in the following lines in
extjs/resources/ext-all.css
PHP Code:/*
.ext-ie .x-form-check-group .x-form-check-wrap,.ext-ie .x-form-radio-group .x-form-radio-wrap{height:21px;}
.ext-ie .x-form-check-wrap input,.ext-ie .x-form-radio-wrap input{width:15px;height:15px;}
*/
....
/*
.x-form-radio{background:url('../images/default/form/radio.gif') no-repeat 0 0;}
*/


Reply With Quote