Radio buttons inside drop-down

by psoares

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.9.0/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.9.0/dojox/grid/resources/Grid.css">
<div id="editBox" data-dojo-type="dijit/InlineEditBox" data-dojo-props="editor:Textarea">
    <script type="dojo/on" data-dojo-event="change" data-dojo-args="value">
        require(['dojo/dom', 'dojo/html', 'dojo/domReady!'], function(dom, html) {
            html.set(dom.byId('output'), value);
        });
    </script>
</div>
<h3 id="output"></h3>
<script type="dojo/require">
    Textarea : 'dijit/form/Textarea'
</script>