一覧画面をURLに表示する

一番上の項目で「URL」と表示する。

ただ表示するだけなら

ajax-test-list.vmにて

<th>URL<th>

を追加。

入力したURLを一覧画面に表示する。

TestSelectData.javaにて 468行目あたりで

rd.setUrl(record.getUrl());

を入力する。

ajax-test-list.vmにて

#ALtdcellheaderAtt('class="auiMTCaption"')
<div>
<a href="javascript:void(0);" onclick="aipo.common.showDialog('$!utils.escapeXML($!jslink.getPortletById($!portlet.ID).addQueryData("template","TestDetailScreen").addQueryData("entityid",$record.TestId))');">$!record.TestName</a>
</div>
#ALtdcellfooter()

の後に

#ALtdcellheaderAtt('class="auiMTCaption"')
<div>
<a href="javascript:void(0);" onclick="aipo.common.showDialog('$!utils.escapeXML($!jslink.getPortletById($!portlet.ID).addQueryData("template","TestDetailScreen").addQueryData("entityid",$record.Url))');">$!record.Url</a>
</div>
#ALtdcellfooter()

と入力する。