mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
#17993719 : fixed ui for extra variables using radio buttons
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6350 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f5f36b1258
commit
f188b8dfe8
2 changed files with 11 additions and 1 deletions
|
|
@ -181,7 +181,7 @@
|
|||
<!--@if($val->default_value)-->
|
||||
<ul class="radio">
|
||||
<!--@foreach($val->default_value as $v)-->
|
||||
<li><input type="radio" name="{$val->column_name}" value="{$v}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="checked"<!--@end-->/>{$v}</li>
|
||||
<li><input type="radio" name="{$val->column_name}" value="{$v}" <!--@if($val->value == $v)-->checked="checked"<!--@end-->/>{$v}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -186,6 +186,16 @@
|
|||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
<!--@elseif($val->column_type == 'radio')-->
|
||||
<!--@if($val->default_value)-->
|
||||
<ul class="radio">
|
||||
<!--@foreach($val->default_value as $v)-->
|
||||
<li><input type="radio" name="{$val->column_name}" value="{$v}" <!--@if($val->value == $v)-->checked="checked"<!--@end-->/>{$v}</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!--// 단일 선택 -->
|
||||
<!--@elseif($val->column_type == 'select')-->
|
||||
<select name="{$val->column_name}">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue