How can I get the label of the link that is clicked by the user?
I have tried:
var elem=document.getElementById("#{id:link1}");var lbl=elem.label;
But this is not returning the label name.
|
How can I get the label of the link that is clicked by the user? I have tried:
But this is not returning the label name. |
||||
|
|
|
The "label" property of a Link control is called text so the following server-side Javascript will get you the value of the label of the link and store the value in the variable "label":
|
|||||||||
|
|
In Xpages [xp:label] tags turn into [span] tags so on csjs you have to use the innerHTML to get the value so your original code would have worked had it been.
var lbl=elem.innerHTML; |
||||
|
|