문제

Using ultimate flexicious datagrid with enableDynamicLevels="true", I try to have an unique footer instead of one per level.

Is that possible ? And if yes, how ?

Thanks !

도움이 되었습니까?

해결책

Which version are you on? If you get the latest version, there should be an event dynamicLevelCreated. The level property of the event dispatched is the newly created level. You can set enableFooters=false in there. dynamicLevelCreated="testODG1_dynamicLevelCreatedHandler(event)"

protected function testODG1_dynamicLevelCreatedHandler(event:FlexDataGridEvent):void
            {
                event.level.enableFooters=false;
            }
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top