Require-Bundle: org.adempiere.base;bundle-version="4.1.0",
org.adempiere.ui;bundle-version="0.0.0",
org.idempiere.zk.extra;bundle-version="0.0.0",
zcommon;bundle-version="0.0.0",
zel;bundle-version="8.0.1",
zhtml;bundle-version="8.0.1",
zk;bundle-version="0.0.0",
zkbind;bundle-version="0.0.0",
zkplus;bundle-version="8.0.1",
zul;bundle-version="8.0.1",
zweb;bundle-version="8.0.1",
org.junit;bundle-version="4.12.0",
org.apache.commons.io;bundle-version="2.2.0",
com.itextpdf;bundle-version="5.5.10",
org.atmosphere.runtime;bundle-version="0.0.0"
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/c4e3e844-0397-466b-9bf9-32accbc72ebf%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+unsubscribe@googlegroups.com.
can you tell me which manifest in which package i need to modify??
is this why i cant use any zkoss related function in my iDempiere project??
sorry im a newbie at java and idempiere. im using the 4.1 iDempiere that i downloaded from
Regards,Rheine Adithia
On Thursday, February 23, 2017 at 4:18:14 PM UTC+7, Carlos Antonio Ruiz Gómez wrote:Heri, the zk libraries were moved to targetPlatform.
You need to change your plugins referencing the org.zkoss.zk.library to reference the plugins, like here:
https://bitbucket.org/druiz/kdb_idempiere/commits/935963e
Regards,
Carlos Ruiz
El 23/02/17 a las 10:08, Hermawan Heri escribió:
Hi All,
I just clone idempiere.
but org.zkoss.zk.library folder is empty?
so I can't add a plug-in
Can anyone help me?
Thanks.
Heri H
--
You received this message because you are subscribed to the Google Groups "iDempiere" group.
To unsubscribe from this group and stop receiving emails from it, send an email to idempiere+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/idempiere/29c270ac-0b3a-49eb-864f-c152340478c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
try {
temp = c.getText();
} catch (WrongValueException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}On Wed, Aug 2, 2017 at 5:10 PM, Rheine Adithia <rheine...@gmail.com> wrote:can you tell me which manifest in which package i need to modify??
is this why i cant use any zkoss related function in my iDempiere project??how you use "zkoss related function in my iDempiere project"?
sorry im a newbie at java and idempiere. im using the 4.1 iDempiere that i downloaded fromRegards,Rheine Adithia
Require-Bundle: org.adempiere.base;bundle-version="0.0.0",
org.adempiere.ui;bundle-version="0.0.0",
org.idempiere.zk.extra;bundle-version="0.0.0",
zcommon;bundle-version="0.0.0",
zel;bundle-version="0.0.0",
zhtml;bundle-version="0.0.0",
zk;bundle-version="0.0.0",
zkbind;bundle-version="0.0.0",
zkplus;bundle-version="0.0.0",
zul;bundle-version="0.0.0",
zweb;bundle-version="0.0.0",
org.junit;bundle-version="0.0.0",
org.apache.commons.io;bundle-version="0.0.0",
com.itextpdf;bundle-version="0.0.0",
org.atmosphere.runtime;bundle-version="0.0.0"/**
* @author hieplq
*
*/
public class ZKUpdateUtil {
public static void setHeight (HtmlBasedComponent comp, String value){
if (comp.getVflex() != null)
comp.setVflex(null);
comp.setHeight(value);
}
...
Text Variable (txtPostal)
// OLD MODE
txtPostal.setHflex("1");
// NEW MODE
ZKUpdateUtil.setHflex(txtPostal, "1");
2. ANOTHER CASE is setValue method
fieldDescription.setValue(getProductDescription(getSelectedProductId(), Env.getAD_Client_ID(Env.getCtx()), getSelectedOrgID(),
getSelectedDateFrom() , getSelectedDateTo()));
in this case Java is telling me to surround by try catch, but still having error.
try {
fieldDescription.setValue(getProductDescription(getSelectedProductId(), Env.getAD_Client_ID(Env.getCtx()), getSelectedOrgID(),
getSelectedDateFrom() , getSelectedDateTo()));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}