I’ve been experimenting (unsuccessfully) with server-side JS code to get the view title for the first view panel on an XPage.
This led to looping through the keySet for the requestScope variable and printing all the key names, and I discovered a key called “NotesView|view-people|2147483647”.
I then got the entry for that key and, expecting its type to be NotesView, tried to call getName(). This gave an error message indicating its type is actually “DominoViewDataContainer”.
The “DominoViewDataContainer” type is not mentioned in Designer Help, and I can’t see any useful information about it in this forum. Does anyone know anything about that type? Is it possible to get the actual view title (not the alias), directly from that type?
I realise the key name contains the view alias so, if necessary, I can use that to get a NotesView object and then get the view title. It’s just a bit less direct than I’d like.