Hi Peter,
Thank you for your reply. Here is my code.
I need to put a link in table to display it.
Any other bypass you can offer?
// Create jqxListBox
$('#listbox').jqxListBox({
......
renderer: function (index, label, value) {
var datarecord = jsonDATA[index];
var table = '<table>' +
'<tr>' +
'<td rowspan="2">' + '<a target="_blank" href="' + datarecord.S5 + '" style="display: block;">Apply</a>' + '</td>' +
'<td >' + datarecord.S3 + '</td>' +
'</tr>' +
'<tr>' +
'<td >' + datarecord.S4 + '</td>' +
'</tr>' +
'</table>';
return table
}
});
Thanks.