git-svn-id: http://xe-core.googlecode.com/svn/trunk@1731 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-22 02:30:40 +00:00
parent 749b143bcc
commit 4f38a83865
4 changed files with 10 additions and 7 deletions

View file

@ -46,6 +46,7 @@ Jeong, Chan Myeong 070601~070630
.boardList th.num { background-position:-3px bottom; border-left:1px solid #ffffff; padding:0;}
.boardList th.category { padding:0 .2em 0 .5em;}
.boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
.boardList th.category select { width:7em; }
.boardList th.title {}
.boardList th.author {}
.boardList th.reading { white-space:nowrap;}
@ -126,6 +127,8 @@ Jeong, Chan Myeong 070601~070630
.buttonTypeB .icon { margin:0 .2em;}
.buttonTypeB input { border:none; cursor:pointer; background:url(../images/white/buttonTypeBCenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; _position:relative; _top:4px;}
.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/white/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;}
/* button of list page */
.buttonRight { position:relative; float:right; top:-3em; margin:0 0 -3em 0; _top:-3.5em; padding-right:.5em; overflow:visible;}
.buttonRight ul { float:left; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 419 B

View file

@ -122,10 +122,9 @@ function completeDeleteTrackback(ret_obj) {
}
/* 카테고리 이동 */
function doChangeCategory(sel_obj, url) {
var category_srl = sel_obj.options[sel_obj.selectedIndex].value;
if(!category_srl) location.href=url;
else {
location.href = current_url.setQuery('category',category_srl);
}
function doChangeCategory() {
var sel_obj = xGetElementById("board_category");
var sel_idx = sel_obj.selectedIndex;
var category_srl = sel_obj.options[sel_idx].value;
location.href = current_url.setQuery('category',category_srl);
}

View file

@ -18,12 +18,13 @@
<!-- 카테고리 사용시 카테고리 선택 표시 -->
<th scope="col" class="category">
<form action="./" method="get">
<select name="category" onchange="doChangeCategory(this, '{getUrl('category','')}')" >
<select name="category" id="board_category">
<option value="" selected="selected">{$lang->category}</option>
<!--@foreach($category_list as $val)-->
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="true"<!--@end-->>{$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
<!--@end-->
</select>
<input type="button" name="go_button" value="GO" onclick="doChangeCategory(); return false;" class="buttonTypeGo" />
</form>
</th>
<!--@end-->