5

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)...

Ramkumar
  • 874
  • 11
  • 27

3 Answers3

5

When using SSJS you will have for example :

var nvc:NotesViewColumn
nvc.getItemName() -> programmatic name of column
nvc.getTitle() -> title of column
Ferry Kranenburg
  • 2,625
  • 1
  • 17
  • 23
3

The ItemName property of a NotesViewColumn object will contain the programmatic name for the column: http://blagoevgrad.court-bg.org/help/help85_designer.nsf/Main?OpenFrameSet

Ken Pespisa
  • 21,989
  • 3
  • 55
  • 63
1

You'll find that on on the last (Advanced) tab of the Column properties infobox in Designer.
It'll be there under 'Programmatic Use' for Name:

Paul Hannan
  • 587
  • 2
  • 8