Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do we find the programmatic name of a view's column?

For some of my requirements, I have a notes view,

Its column name is different from programmatic column Name..

So I wanna to find the column's programmatic name from Xpage.,

I searched the NotesViewColumn class, I did not find it there.

I want to get the column's programmtic name using Javascript (Xpage)...

like image 519
Ramkumar Avatar asked Mar 26 '12 10:03

Ramkumar


1 Answers

When using SSJS you will have for example :

var nvc:NotesViewColumn
nvc.getItemName() -> programmatic name of column
nvc.getTitle() -> title of column
like image 139
Ferry Kranenburg Avatar answered Nov 15 '22 05:11

Ferry Kranenburg