Hi, guys! May you help me?!!! I need get full URL for list item using client object model. I will appreciate any helpful links. I have part of code
while (listEnum.moveNext()) {
var curentItem = listEnum.get_current();
if (curentItem.get_item('Enterprise').get_lookupValue() == this._enterprise) {
listOrganization += "<tr><td><a href="+ I_need_link_here + ">" + curentItem.get_item('Title') + "</a>" + "</td></tr>";
}
}Aleksandr Shramko