!7 sclass NamedList { S name; L lines; } module SomeObjects > DynObjectTable { L lists; transient SimpleLiveValue contentTitle = stringLiveValue("Content"); start { setData(collect name(lists)); itemToMap = func(NamedList l) -> Map { litorderedmap("Name" := l.name, lines := l(l.lines)) }; } visualize { ret jhsplit(super.visualize(), jLiveValueSection(contentTitle)); } }