Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to manually set a radio button to checked, but there is a problem. The code works just fine:

$('#'+align+'Text').attr("checked","checked");

But when I put jQuery UI into practice and make the radios a buttonset, everything breaks. Again, everything works fine until I put in the .buttonset(), then they look much better than normal radios, but the setting above does not work at all.

EMPHASIS ON THE FOLLOWING:
Has anyone been able to manually set a radio button while .buttonset() is active on those radios?

share|improve this question
First off: the checked property is a Boolean value, it's set by being either present or not-present. It doesn't require an attribute. Try using: attr('checked',true) instead. It might make a difference. – David Thomas Feb 28 '11 at 18:05
This is not a problem, it works fine either way when jQuery UI is not used. – Yottagray Feb 28 '11 at 18:20
1  
You might want to consider posting a JS Fiddle demo that reproduces your problem; that way we can see what's interacting with what. – David Thomas Feb 28 '11 at 18:26
@Yottagray - I can't get "buttonset()" to do anything at all in a jsfiddle - what is it supposed to do? The documentation for "buttonset" is deficient, to say the least ... – Pointy Feb 28 '11 at 18:26
1  
Here's a jsFiddle where setting the radio button "checked" attribute works perfectly well: jsfiddle.net/Pointy/Nggxc/3 – Pointy Feb 28 '11 at 18:41
show 3 more comments

1 Answer

up vote 8 down vote accepted

All you need to do is call the "refresh" operation on the button widget after setting the "checked" attribute.

$('#'+align+'Text').attr("checked","checked").button('refresh');

Here's the jsfiddle.

share|improve this answer
Your answer is correct once Yottagray marks your answer as accepted I will delete mine. – Mark Feb 28 '11 at 18:54
Well your workaround wasn't bad, really; it's a fine idea that just doesn't happen to be necessary :-) – Pointy Feb 28 '11 at 19:00
Or produce the intended effect, been obsessed with SO lately and have been getting ahead of myself sometimes :-) – Mark Feb 28 '11 at 19:04
Thank you Pointy and Mark, I really appreciate the effort. Mark's answer was working fine for me, but Pointy your's is a bit better. Thanks again! – Yottagray Feb 28 '11 at 19:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.