Hi,
I have a list lookup that I need to look at one of two columns depending on what the interface language is of the user. I can get that interface language using:
var lcid =_spPageContextInfo.currentLanguage;
which results in 1033 for English and 1036 for French.
I’d like the list lookup to check a column named “Summary” if it’s English and a column named “SummaryFR” if it’s French. However the list lookup control does not allow variables to be used as part of the expression.
I looked at Javascript to set that column, but I cannot seem to find the right property to put the value into.
Thanks