diff options
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/table.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js index 2ae7695071..f738144ae5 100644 --- a/bitbake/lib/toaster/toastergui/static/js/table.js +++ b/bitbake/lib/toaster/toastergui/static/js/table.js | |||
| @@ -239,6 +239,10 @@ function tableInit(ctx){ | |||
| 239 | } | 239 | } |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | if (col.field_name === tableData.default_orderby){ | ||
| 243 | title.addClass("default-orderby"); | ||
| 244 | } | ||
| 245 | |||
| 242 | } else { | 246 | } else { |
| 243 | /* Not orderable */ | 247 | /* Not orderable */ |
| 244 | header.css("font-weight", "normal"); | 248 | header.css("font-weight", "normal"); |
| @@ -384,7 +388,7 @@ function tableInit(ctx){ | |||
| 384 | if (col === tableParams.orderby || | 388 | if (col === tableParams.orderby || |
| 385 | '-' + col === tableParams.orderby){ | 389 | '-' + col === tableParams.orderby){ |
| 386 | tableParams.orderby = null; | 390 | tableParams.orderby = null; |
| 387 | loadData(tableParams); | 391 | $("#"+ctx.tableName +" .default-orderby").click(); |
| 388 | } | 392 | } |
| 389 | } | 393 | } |
| 390 | 394 | ||
