
| Key: |
WW-1383
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
tm_jee
|
| Reporter: |
luckystrike
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
WebWork
Created: 28/Nov/06 05:45 AM
Updated: 10/Jan/07 11:22 PM
|
|
| Component/s: |
Views
|
| Affects Version/s: |
2.2.4
|
| Fix Version/s: |
2.2.5
|
|
|
to fix the problem you have to add some lines of code in class com.opensymphony.webwork.views.freemarker.tags.WebWorkModels
...
protected TreeNodeModel treenodeModel;
...
public TreeNodeModel getTreenode() {
if (treenodeModel == null) {
treenodeModel = new TreeNodeModel(stack,req, res);
}
return treenodeModel;
}
|
|
Description
|
to fix the problem you have to add some lines of code in class com.opensymphony.webwork.views.freemarker.tags.WebWorkModels
...
protected TreeNodeModel treenodeModel;
...
public TreeNodeModel getTreenode() {
if (treenodeModel == null) {
treenodeModel = new TreeNodeModel(stack,req, res);
}
return treenodeModel;
} |
Show » |
|