Status: New
Owner: alexandr...(a)gmail.com
CC: usman.bh...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Roassal
New issue 911 by usman.bh...(a)gmail.com: Nested nodes in Roassal take too
long
http://code.google.com/p/moose-technology/issues/detail?id=911
Try this script for creating nested nodes in Roassal. The execution seems
to never return. The behavior is similar with both Mondrian DSL or Roassal
API.
view := ROMondrianViewBuilder new.
view shape rectangle withoutBorder.
view node:#aaa forIt:[
view shape rectangle.
view nodes: (1 to: 10000).
view gridLayout.
].
view shape rectangle withoutBorder.
view node:#bbb forIt:[
view shape rectangle.
view nodes: (1 to: 1000).
view gridLayout.
].
view verticalLineLayout.
view open