Hi,
I'm using latest smartgwt ie., smartgwt3.1p version. In list grid, i want to display one column's, empty cell value as HyperLink with a cellClickHandler attached to it.
So i've used like below:
	but it is displaying as plain text instead of hyper link. Clickhandler is getting invoked but i need to display that text as hyper link.
I've created a test case by taking showcase example. Please check once.
					I'm using latest smartgwt ie., smartgwt3.1p version. In list grid, i want to display one column's, empty cell value as HyperLink with a cellClickHandler attached to it.
So i've used like below:
Code:
	
	      ListGridField linkField = new ListGridField("linkName", "Status");
        linkField.setType(ListGridFieldType.LINK);
        linkField.setTarget("javascript");
        linkField.setEmptyCellValue("Show Status");
I've created a test case by taking showcase example. Please check once.

Comment