-
f u d b.
2008-04-11 16:03:40 UTC in JPL
-
I have a problem using it on Linux
when I use Java and call prolog it's all ok, but when i call java from
prolog i receive this error message:
test(X).
ERROR: jpl:jFindClass/2: Undefined procedure: jpl:jni_func/3
the code of test is the following:
:- use_module(library(jpl)).
test(V):-jpl_call('java.lang.System',currentTimeMillis,[],V).
Also the exmples give me the same error:(.
2008-04-10 17:37:29 UTC in JPL
-
probably you ha to escape it.
2006-12-06 16:29:36 UTC in ZK - Simply Ajax and Mobile
-
when i call the getLabel() method it returns the label of the another button!!! is it possible?
when i click on the "argomento" or "cliente" button it alerts "Aggiungi cartella"
here is my code...
<zk xmlns:x="http://www.zkoss.org/2005/zul"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:zk="http://www.zkoss.org/2005/zk">...
2006-12-06 10:28:58 UTC in ZK - Simply Ajax and Mobile
-
<div style="clear:both">
<image src="img/fonte.gif" class="leftFloating" zk:onClick="slide(2)"/>
<x:div id="t2" class="sliderZk" visible="false">
<x:checkbox id="${each}" label="${each}" zk:forEach="${idFonti}" style="display:block"/>...
2006-12-04 08:16:35 UTC in ZK - Simply Ajax and Mobile
-
i don't know why but the size() method return (sizeOfTheList+1) !!!!
so, i have to use
for(int i=0;i<sources.size()-1;i++)
and in this way it works.
2006-12-03 12:16:15 UTC in ZK - Simply Ajax and Mobile
-
<zscript>
Map fonti = new HashMap();
fonti.put("ambientediritto","Ambiente Diritto");
fonti.put("taxetlex","Tax Et Lex");
Set idFonti=fonti.keySet();
</zscript>
<x:checkbox id="${each}" label="${fonti.get(each)}" zk:forEach="${idFonti}"/>
if it can be useful, instead with the following code...
2006-12-03 11:59:41 UTC in ZK - Simply Ajax and Mobile
-
this is my code (t2 is the id of a div containing checkboxes):
String resolveSources(){
List sources=t2.getChildren();
boolean noSources=true;
StringBuffer sb=new StringBuffer("");
Checkbox cb;
String source;
for(int i=0;i<sources.size();i++){
cb=page.getFellow(sources.get(i).getId());
if(cb.isChecked()){
source="source:"+cb.getId();...
2006-12-03 11:34:06 UTC in ZK - Simply Ajax and Mobile
-
i found it
look here... http://www.zkoss.org/javadoc/2.1.3/zkplus/org/zkoss/zkplus/acegi/AcegiSecurityContextListener.html.
2006-12-03 08:40:28 UTC in ZK - Simply Ajax and Mobile
-
i have the same problem!!
please help us.
2006-12-02 20:31:04 UTC in ZK - Simply Ajax and Mobile