i need to show pop up on click of each text in the same cell…
each text is made as a link but , works only for single link in the same cell
I tried following possibilities based on some samples :
//first one
for (int p = 0; p < act.length; p++) { temp += act[p]+"^javascript:showNonMeterTrending("+id5+",""+act[p]+"");^_self"+" ";
}
c4.setStringValue(temp);
//2nd one
for (int p = 0; p < act.length; p++) {
temp += “<a href=“javascript:showNonMeterTrending(”+id6+”,""+act[p]+"");">"+ act[p]+"<\a> ";
}
c4.setStringValue(temp);
Plz help me… Thanx in advance