yah for some reason I had recalled that by just ha...
# suitescript
d
yah for some reason I had recalled that by just having a Select field type with the appropriate source param with inline field type and List sublist was enough in the past, could be wrong
s
You can achieve this with some jQuery...
It will take some work with using N/url to get the url of the record, but something like this gets pretty close
Copy code
var sublistId = 'custpage_recommendedorders';
var indexOfRow = 0;
var indexOfColumn = 12;
var urlString = "/app/common/custom/custrecordentry.nl?rectype=9&id=54";
var displayText = jQuery('#' + sublistId + 'row' + indexOfRow)[0].children[indexOfColumn].innerText;
jQuery('#' + sublistId + 'row' + indexOfRow)[0].children[indexOfColumn].innerText = '';
jQuery(jQuery('#' + sublistId + 'row' + indexOfRow)[0].children[indexOfColumn]).append('<a href="' + urlString + '" target="_self" class="dottedlink">' + displayText + '</a>');