Is there any event that triggers right after the layout is applied in Roassal?

StackOverflow https://stackoverflow.com/questions/13413602

  •  29-11-2021
  •  | 
  •  

문제

I would like to define animations right after applying the layout. This is important when the visualization is defined within the context of a Glamour browser.

올바른 솔루션이 없습니다

다른 팁

Using the Mondrian DSL, you can use:

view nodes: (1 to: 20). view horizontalLineLayout on: ROLayoutEnd do: [:event | ... ].

Using the Roassal API, you can use: ROHorizontalLineLayout on: ROLayoutEvent do: [ :event | events add: event ]; applyOn: yourElements

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top