Re: passing map parameter from ftl to event type java

2008-12-05 Thread Raj Saini
I dont think you can do this. ftl templates generate the html fragment and nothing else. In my opinion you have the following choices: 1. Pass these values as hidden parameters. 2. Pass them as query string to the next request. 3. Add them to session. 4. Save them somewhere in the database and

Freemarker JspTaglibs error

2008-12-05 Thread madppiper
Hey, when trying to use an external taglib (jakarta image taglib) in ofbiz, i receive the following error: exception report -- Error rendering included template at location

Synchronize POS from network database

2008-12-05 Thread nethanjavier
:confused:Hi! Im a newbie here in OFBIZ and i'm kinda attracted about how fast it is and easy. Its been a week since I started to and I encounter a problem on how to synchronize my POS to a network database. I'm using SQL Server Database for my POS and all the products are in another computer and

Re: Freemarker JspTaglibs error

2008-12-05 Thread BJ Freeman
the Regions, Taglib, and Jsp have been deprecated some time ago. Freemaker FtL extention is the only ones recognized. madppiper sent the following on 12/5/2008 2:06 AM: Hey, when trying to use an external taglib (jakarta image taglib) in ofbiz, i receive the following error:

Re: Freemarker JspTaglibs error

2008-12-05 Thread madppiper
hmm... so is there any possible way to include jsptaglibs? or would I need to access the taglibs using bash files? -- View this message in context: http://www.nabble.com/Freemarker-JspTaglibs-error-tp20850917p20851219.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: passing map parameter from ftl to event type java

2008-12-05 Thread BJ Freeman
the basic flow in ofbiz is to submit through the request-map in the controller, then return through the request-map to a view. 1) if you mapped the JRDataSource in the service it is part off the context and or httprequest till it is removed. 2) not sure what parameters you catching in the bsh file

Re: Freemarker JspTaglibs error

2008-12-05 Thread BJ Freeman
your are attempting things beyond ofbiz design. so you on your own. madppiper sent the following on 12/5/2008 2:26 AM: hmm... so is there any possible way to include jsptaglibs? or would I need to access the taglibs using bash files?

Re: Synchronize POS from network database

2008-12-05 Thread BJ Freeman
the sync only work between of OfBiz instances. one is running the POS http://docs.ofbiz.org/display/OFBIZ/POS+System the other is MCS. the POS uses, usually the embedded derby database the MSC then is attached to your SQL server, through the entityengine.xml. nethanjavier sent the following on

Re: Inserting Data through forms

2008-12-05 Thread Awdesh Singh Parihar
Hello Divya Just check folowing thing in your application : - 1) Have you made entry of entity model in ofbiz-component.xml file . 2) Check all value of variable is coming at the time of services implementation . 3) What ever CRUD operation you written for your application is correct . If this

Re: GL Chart of Accounts

2008-12-05 Thread Bilgin Ibryam
Hi Wicus, The best way to understand these entities is through reading Accounting chapter from Data Model Resource Book v1. If you search in the ML, you can also find useful information about these entities. Here is one http://ofbiz.markmail.org/search/?

Re: Freemarker JspTaglibs error

2008-12-05 Thread Adrian Crum
Did you try asking this question on the FreeMarker mailing list? -Adrian --- On Fri, 12/5/08, madppiper [EMAIL PROTECTED] wrote: From: madppiper [EMAIL PROTECTED] Subject: Freemarker JspTaglibs error To: user@ofbiz.apache.org Date: Friday, December 5, 2008, 2:06 AM Hey, when trying to

cache and FTL and Timeout.

2008-12-05 Thread Fabien JALABERT
Hello, I've 2 questions on tuning ofbiz. 1) On a production site, the search page returns a list of numerous products (more than 200). The main content view of the search result page call rendering of productsummary for each product in result set. This view contains 2 calls: -

Re: passing map parameter from ftl to event type java

2008-12-05 Thread nalin chandra
Hi Hari tou wrote.. Third, on .ftl file I catch the Map and JRDataSource which has been sent by .bsh file (on context) before. And here is the problem : I want to send (again) both of the parameters to become input parameters for a java's event. so, if you want to send the same Maps for next

Re: set the permission

2008-12-05 Thread nalin chandra
Hi Anand Permission setting is define in the decorator also. If you no use this section.. condition if-has-permission permission= action=_VIEW/ /condition tag in the any screens widget sections or its common decorator . it will automatically provide the all permission. anand

Question regarding FOB cost

2008-12-05 Thread Sumit Pandit
Hello Devs, I need suggestion regarding to the FOB cost. For this can I add a new entry in CostComponentType entity ? Thanks in advance Sumit Pandit

Re: passing map parameter from ftl to event type java

2008-12-05 Thread Mridul Pathak
Hari, I am pretty sure that I have understood your problem. Here are few comments from my side: 1) AFAIK, you can never send a Java object other than String and Array as a (hidden) parameter from FTL. What you can send is string values and array. The reason is there are two major methods