在有空值的表格中可以通过下面的脚本把空值中的超链接去掉:
var a=getViewData("表1");
for(var i=1; i < a.size(0); i++)
{
if(isNull(a.get(i,1)))
a.removeLink(i,1)
}
else
};