This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div data-controller="select"> | |
<%= select_tag(:question_type, options_for_select([['Multiple choice with 1 answer', 'radial'], ['Multiple choice with multiple answers', 'checkbox'], ['Open answer', 'open']], 'open'), {:class => 'form-field', "data-select-target" => "select", "data-action" => "change->select#changed"}) %> | |
<div data-select-target="single"> | |
<p> Insert here for single option which will ocure if choosen 'open' </p> | |
</div> | |
<div data-select-target="multi"> | |
<p> Insert here for multi option which will ocure if choosen enethyng else </p> | |
</div> |