From mattgl on 2012/11/07...
Hi,
this is a very handy function, thanks indeed.
Unfortunately in the current implementation it only works on english sites, because it relies on 2 hard coded strings: "People Picker" and "Check Names".
In order to get it to work for other languages, too, I suggest the following changes:
var thisContents = thisRow.find("div[id*='_UserField_upLevelDiv']");var thisCheckNames = thisRow.find("img[src*='checknames.gif']:first");
The name of the image and the suffix of the id of the DIV should be the same in all languages.
My 2 cents, Matthias