hi,
i'm facing a problem to put a link for a column in a tableView..
setLinkColumnKey should set the specified column as link which i am doing but still the link doesn't show...
am using following code..
<hbj:tableView id="PropertyTable"
model= "MyJCoBean.activityGroupsModel"
design = "ALTERNATING"
headerVisible = "true"
fillUpEmptyRows = "true"
headerText = "STATUS INFO"
visibleFirstRow = "1">
<%
PropertyTable.setLinkColumnKey("linkRef",7);
%>
</hbj:tableView>
In the above code where to specify what linkRef does... where it should point to...?? plz help ..
Is there any other way to put link and where it should point depending on what is clicked?
deep
Hi Deep,
In my experience I have tried the following method for displaying the links in the Table view.
1. Define the table column type of the column (which has to be a link) as USER
2. Implement a cell renderer where you check the column number, create a link object and render it.
This will display the link in the table view.
Shankar
Add a comment