[#407] support row reordering in sclickGrid
This commit is contained in:
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
#recline-flot-tooltip {
|
#recline-flot-tooltip {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-color: #FEE !important;
|
background-color: #FEE;
|
||||||
color: #000000 !important;
|
color: #000000;
|
||||||
opacity: 0.8 !important;
|
opacity: 0.8;
|
||||||
border: 1px solid #fdd !important;
|
border: 1px solid #fdd;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,6 +67,10 @@
|
|||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header .recline-query-editor label {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
/**********************************************************
|
/**********************************************************
|
||||||
* Pager
|
* Pager
|
||||||
*********************************************************/
|
*********************************************************/
|
||||||
@@ -78,6 +82,10 @@
|
|||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header .recline-pager .pagination label {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
.header .recline-pager .pagination input {
|
.header .recline-pager .pagination input {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
|
|||||||
@@ -248,6 +248,9 @@ my.MultiView = Backbone.View.extend({
|
|||||||
// the main views
|
// the main views
|
||||||
_.each(this.pageViews, function(view, pageName) {
|
_.each(this.pageViews, function(view, pageName) {
|
||||||
view.view.render();
|
view.view.render();
|
||||||
|
if (view.view.redraw) {
|
||||||
|
view.view.redraw();
|
||||||
|
}
|
||||||
$dataViewContainer.append(view.view.el);
|
$dataViewContainer.append(view.view.el);
|
||||||
if (view.view.elSidebar) {
|
if (view.view.elSidebar) {
|
||||||
$dataSidebar.append(view.view.elSidebar);
|
$dataSidebar.append(view.view.elSidebar);
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ my.Pager = Backbone.View.extend({
|
|||||||
<div class="pagination"> \
|
<div class="pagination"> \
|
||||||
<ul> \
|
<ul> \
|
||||||
<li class="prev action-pagination-update"><a href="">«</a></li> \
|
<li class="prev action-pagination-update"><a href="">«</a></li> \
|
||||||
<li class="active"><a><input name="from" type="text" value="{{from}}" /> – <input name="to" type="text" value="{{to}}" /> </a></li> \
|
<li class="active"><label for="from">From</label><a><input name="from" type="text" value="{{from}}" /> – <label for="to">To</label><input name="to" type="text" value="{{to}}" /> </a></li> \
|
||||||
<li class="next action-pagination-update"><a href="">»</a></li> \
|
<li class="next action-pagination-update"><a href="">»</a></li> \
|
||||||
</ul> \
|
</ul> \
|
||||||
</div> \
|
</div> \
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ my.QueryEditor = Backbone.View.extend({
|
|||||||
<form action="" method="GET" class="form-inline"> \
|
<form action="" method="GET" class="form-inline"> \
|
||||||
<div class="input-prepend text-query"> \
|
<div class="input-prepend text-query"> \
|
||||||
<span class="add-on"><i class="icon-search"></i></span> \
|
<span class="add-on"><i class="icon-search"></i></span> \
|
||||||
<input type="text" name="q" value="{{q}}" class="span2" placeholder="Search data ..." class="search-query" /> \
|
<label>Search</label><input type="text" name="q" value="{{q}}" class="span2" placeholder="Search data ..." class="search-query" /> \
|
||||||
</div> \
|
</div> \
|
||||||
<button type="submit" class="btn">Go »</button> \
|
<button type="submit" class="btn">Go »</button> \
|
||||||
</form> \
|
</form> \
|
||||||
|
|||||||
Reference in New Issue
Block a user