70 lines
1.9 KiB
Plaintext
70 lines
1.9 KiB
Plaintext
<% content_for :page_specific_javascript do %>
|
|
<%= javascript_include_tag "lib/jquery-ui-sortable.min" %>
|
|
<% end %>
|
|
<style type="text/css">
|
|
.element{
|
|
background: #FFF;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #DDD;
|
|
}
|
|
.detail{
|
|
padding: 10px;
|
|
min-height: 250px;
|
|
}
|
|
.totle{
|
|
margin-bottom: 25px;
|
|
}
|
|
.totle span{
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
|
|
<div class="row">
|
|
<div class="element span4">
|
|
<div class="detail w-a h-a">
|
|
<p class="totle">
|
|
<a class="btn btn-small btn-primary pull-right" href="<%= new_admin_honor_type_path %>#honor_type_modal" data-toggle="modal" data-remote="true"><i class="icon-plus"></i> <%= t('add')%></a>
|
|
<span><%= t("personal_honor.honor_category") %></span>
|
|
</p>
|
|
<div class="detal-list my_scroll">
|
|
<div class="scrollbar">
|
|
<div class="track">
|
|
<div class="thumb">
|
|
<div class="end"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="viewport">
|
|
<div class="overview">
|
|
<table id="honor_types" class="table table-striped">
|
|
<tbody>
|
|
<%= render :partial => 'list_honor_type', :collection => @honor_types.asc(:sort_position) %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="honor_type_qe">
|
|
<div style="display:none;" class="modal" id="honor_type_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$("#honor_types tbody").sortable({
|
|
update : function(){
|
|
var data = {};
|
|
$("#honor_types tbody tr").each(function(i){
|
|
data[$(this).data("type-id")] = i;
|
|
})
|
|
$.ajax({
|
|
url : "/admin/honor_types/update_order",
|
|
type : "post",
|
|
data : {"order" : data}
|
|
})
|
|
}
|
|
});
|
|
</script> |