Mixin position restorer into QueueListComponent
FEA: ItEr75S08MigrationZK5
This commit is contained in:
parent
124a1bb666
commit
475ae8b380
1 changed files with 14 additions and 0 deletions
|
|
@ -1,6 +1,20 @@
|
|||
zk.$package("limitingresources");
|
||||
|
||||
limitingresources.QueueListComponent = zk.$extends(zk.Widget,{
|
||||
$init: function() {
|
||||
this.$supers('$init', arguments);
|
||||
common.Common.mixInDayPositionRestorer(this);
|
||||
},
|
||||
bind_: function() {
|
||||
this.$supers('bind_', arguments);
|
||||
},
|
||||
unbind_ : function() {
|
||||
this.$supers('unbind_', arguments);
|
||||
},
|
||||
_divsToRestoreDayInto: function() {
|
||||
var first = this.$n();
|
||||
return [first, first.parentNode, first.parentNode.parentNode];
|
||||
},
|
||||
adjustResourceLoadRows : function() {
|
||||
var width = jq('.rightpanellayout #timetracker .z-grid-header :first').innerWidth();
|
||||
jq('.row_resourceload').each(function(index, element){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue