server-side processing and java applet
server-side processing and java applet
Hi all,
I would like to use server-side processing feature of datatables in combination with a java applet. To be more specific the data of 1 column in the table must be displayed using a java applet.
How could I do that? Put the actual html for the applet in the returned JSON object?
I would like to use server-side processing feature of datatables in combination with a java applet. To be more specific the data of 1 column in the table must be displayed using a java applet.
How could I do that? Put the actual html for the applet in the returned JSON object?
This discussion has been closed.
Replies
Do you mean that each cell has a Java applet in it which is drawing the data? In which case, yes - just put in the required HTML like you would for a normal HTML table.
Allan
I can initialize the applets, but only with that code in fnRender :
[code]
"fnRender":
function(obj) {
return '';
}
[/code]
I know that my data is in obj.aData[ obj.iDataColumn ].
I want to use the jmolLoadInline(model, {targetSuffix}) function, in which model is the raw data (not a file).
How to call that function with obj.aData[ obj.iDataColumn ] ?
Moreover, it seems to be recommended to use the applet with
[code]
jmolApplet(size);
[/code]
and i don't know how to instantiate the applet this way.
Thanks a lot !