Renamed TimeTrackerComponent#afterCompose method
* Now it's called "compose" * For an explanation check the comment that's over the method FEA: ItEr02S03MigracionZK5
This commit is contained in:
parent
eeb52f5fa9
commit
97e7770ed7
1 changed files with 8 additions and 2 deletions
|
|
@ -77,9 +77,15 @@ public abstract class TimeTrackerComponent extends HtmlMacroComponent {
|
|||
return timeTrackerElementId;
|
||||
}
|
||||
|
||||
/*
|
||||
* fsanjurjo: I'm temporary changing the name of this method
|
||||
* (from afterCompose to compose) to get it called after calling recreate().
|
||||
* To understand why, please read this: http://www.zkoss.org/forum/listComment/14905
|
||||
* Also renamed the call to its parent.
|
||||
* */
|
||||
@Override
|
||||
public void afterCompose() {
|
||||
super.afterCompose();
|
||||
public void compose() {
|
||||
super.compose();
|
||||
Component fellow = getFellow("firstleveldetails");
|
||||
addSecondLevels(fellow.getParent());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue