Move select label(first option) to title attribute.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12038 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-11-02 06:54:43 +00:00
parent 5589aed53a
commit ab8cd6f262
14 changed files with 50 additions and 91 deletions

View file

@ -136,14 +136,13 @@
</div>
<form action="" method="post" class="search center x_input-append">
<input type="hidden" name="module" value="{$module}" />
<select name="selected_group_srl" style="width:auto;margin-right:4px">
<option value="0">그룹 전체</option>
<select name="selected_group_srl" style="margin-right:4px">
<option value="0">{$lang->all_group}</option>
<!--@foreach($group_list as $key => $val)-->
<option value="{$val->group_srl}" <!--@if($selected_group_srl==$val->group_srl)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<select name="search_target" style="width:auto;margin-right:4px">
<option value="">{$lang->search_target}</option>
<select name="search_target" style="margin-right:4px" title="{$lang->search_target}">
{@$lang->search_target_list = array_merge($lang->search_target_list, $usedIdentifiers)}
<option value="{$key}" loop="$lang->search_target_list=>$key,$val" selected="selected"|cond="$search_target==$key">{$val}</option>
</select>