[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 /** 2 * @provides phabricator-uiexample-reactor-select 3 * @requires javelin-install 4 * javelin-dom 5 * javelin-reactor-dom 6 */ 7 8 JX.install('ReactorSelectExample', { 9 extend: 'View', 10 members: { 11 render: function() { 12 var select = JX.$N('select', {}, [ 13 JX.$N('option', { value: 'goat' }, 'Goat'), 14 JX.$N('option', { value: 'bat' }, 'Bat'), 15 JX.$N('option', { value: 'duck' }, 'Duck') 16 ]); 17 18 return [select, JX.RDOM.$DT(JX.RDOM.select(select))]; 19 } 20 } 21 });
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |