Label on CheckBox or RadioButton

thumbs_up_ico5thumbs_down_ico0
I believe this should be included in the next version of the platform, however, since it's so simple I didn't bother creating WOC topic with it.
A "Label" property for checkbox and radio elements. :)
That way you can set a text for the element, and use that text to check/uncheck it.

Here's how to do it with some jQuery:
"<script type=""text/JavaScript"">
osjs('#" + CheckboxId + "').after(""<label for='" + CheckboxId + "' style='margin-left: 5px; position: relative; top: 1px'>" + Label + "</label>"");
</script>"
Hope it's useful to someone else :)