ZK - Open Source Ajax Java FrameworkZK - Open Source Ajax Java Framework

ZK studio has trouble to recognize method implementation of an anonymous inner class

SimonPai
23 Apr 2010 05:01:36 GMT
23 Apr 2010 05:01:36 GMT

test.zul

<zk>
	<grid id="myGrid">
	</grid>
	
	<zscript><![CDATA[
		myGrid.setRowRenderer(new RowRenderer(){
			public void render(Row row, Object data) throws Exception {
				//
			}
		});
	]]></zscript>
</zk>

The code can be executed without a problem, but ZK studio gives a red line under RowRenderer(), claiming that the required abstract method is not implemented.

Simon