Has anyone been able to disable links in popups if the field is null? This can be found in Robert's eSearch widget and is very nice feature eliminating the confusion users have who are not familiar with the process when they try to click on a link and nothing happens. Possible enhancement to a future release?? Any help is appreciated.
Doesn't actualy "disable" the link, the thread shows how to not display that field in the popup window if the field is null so there will be no link to click on.
However, the this is the same place you would modify code if you wanted blank links to still show, but say something else.
Something similar to:
if !(formattedAttributes[fieldInfo.fieldName]){
formattedAttributes[fieldInfo.fieldName] = " No Link Available"
}