Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
5d652dca
Commit
5d652dca
authored
Apr 28, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(table): table column sorting fix
parent
d69788c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
public/app/core/table_model.ts
+2
-0
public/app/plugins/panel/table/module.ts
+5
-0
No files found.
public/app/core/table_model.ts
View file @
5d652dca
...
...
@@ -32,6 +32,8 @@ export default class TableModel {
if
(
options
.
desc
)
{
this
.
rows
.
reverse
();
this
.
columns
[
options
.
col
].
desc
=
true
;
}
else
{
this
.
columns
[
options
.
col
].
desc
=
false
;
}
}
}
public/app/plugins/panel/table/module.ts
View file @
5d652dca
...
...
@@ -120,6 +120,11 @@ class TablePanelCtrl extends MetricsPanelCtrl {
}
toggleColumnSort
(
col
,
colIndex
)
{
// remove sort flag from current column
if
(
this
.
table
.
columns
[
this
.
panel
.
sort
.
col
])
{
this
.
table
.
columns
[
this
.
panel
.
sort
.
col
].
sort
=
false
;
}
if
(
this
.
panel
.
sort
.
col
===
colIndex
)
{
if
(
this
.
panel
.
sort
.
desc
)
{
this
.
panel
.
sort
.
desc
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment