Re: Problem with Autocomplete in ofbiz?

2010-03-08 Thread Rishi Solanki
Hi Vasu, The links you are referring in your email and the fields are not supporting the auto completion. That means userLoginIdm Customer at orderentry screen and the partyId at FindEmplLeaves. FYI, you need to get the list of the values from DB to show them on a field for auto completion. Let me

Re: Event Service

2010-03-08 Thread Bilgin Ibryam
Hans Bakker wrote: An event is specific local piece functionality normally used in one place for one purpose and called from its location. A service is a piece of functionality which can be located anywhere on the network, is most of time used in several different places and is called by its

Re: Event Service

2010-03-08 Thread Jacques Le Roux
This thread contains a pretty complete definition of event vs service. I will try to put this in FAQ... some day... Thanks guys! Jacques From: Bilgin Ibryam bibr...@gmail.com Hans Bakker wrote: An event is specific local piece functionality normally used in one place for one purpose and

Re: Ecommerce Bug?

2010-03-08 Thread Bilgin Ibryam
I see that the default datetime_format for FTLs is set to -MM-dd HH:mm:ss.SSS but the default date_format is not set. In that case date objects gets formatted according to the user locale. I think (for now) we agreed on having -MM-dd as the default date format no matter what is the

Re: Problem with Autocomplete in ofbiz?

2010-03-08 Thread Bilgin Ibryam
Hi Vasu, In ofbiz you can create html forms in two ways: using freemarker and using form widget. When form widget is used all lookup fields have also autocompleter, but in freemarker forms this feature is missing. That's why there is no autocompleter in some fields as you noticed. Hai,this

Re: Problem with Autocomplete in ofbiz?

2010-03-08 Thread Bilgin Ibryam
Internally autocompleters use scriptaculous library, you can read about it here http://cwiki.apache.org/confluence/display/OFBADMIN/OFBiz+Contributors+Best+Practices I gave a wrong link, the correct one is this http://wiki.github.com/madrobby/scriptaculous/ajax-autocompleter

Re: Now Practice Application will also teach you, how to write ajax request using prototype library in OFBiz

2010-03-08 Thread Ashish Vijaywargiya
+1 -- Ashish http://www.saveourtigers.com/ On Thu, Mar 4, 2010 at 12:12 PM, Pranay Pandey pranay.pan...@hotwaxmedia.com wrote: Its really a nice enhancement, Thanks guys! Now I think its the time it should be divided in to child pages mentioning different parts of the practice from beginner

integration of JBoss and JBPM with OFBiz

2010-03-08 Thread thiru_k
Hi.. this is kiran. I am a newbie to OFBiz. i have succesfully installed Jbpm-jpdl suite. But can i integrate it with OFBiz? also I also tried other methods as given in following link http://www.mail-archive.com/user@ofbiz.apache.org/msg21857.html

workflow automation in OFBiz

2010-03-08 Thread thiru_k
Hi.. this is kiran. I am a newbie to OFBiz. I want to know more about workflow automation in OFBiz. I am using Enhydra JaWE as a xpdl editor. Can i get any tutorials for workflow automation in OFBiz? -- View this message in context:

Re: Problem with Autocomplete in ofbiz?

2010-03-08 Thread Vasu .T
Hai,Rishi Thanks for reply. No,just i opened that screen for the fist time after installing ofbiz and typed letter 'a' and i could not see any autocomplete ouput because when i typed letter 'a' in partyid field i got some autocomplete output. Am i wrong in typing letter 'a' in userloginid and

Calling Ofbiz SOAP service

2010-03-08 Thread Len
I am using the following client XML to call the getOrderStatus service as a SOAP service. The Ofbiz getOrderStatus service takes in a string ordered param and returns a string statusId. The response packet contains only a '\r\n' in the body; Does anyone have any experience on the calling client

exporting services with REST - part 1

2010-03-08 Thread chris snow
I have put some instructions at http://cwiki.apache.org/confluence/x/rQPifor manually exporting services with REST. More to follow...

Re: exporting services with REST - part 1

2010-03-08 Thread Adrian Crum
That link doesn't work. chris snow wrote: I have put some instructions at http://cwiki.apache.org/confluence/x/rQPifor manually exporting services with REST. More to follow...

Re: exporting services with REST - part 1

2010-03-08 Thread Scott Gray
He missed a space: http://cwiki.apache.org/confluence/x/rQPi for ... Regards Scott On 8/03/2010, at 3:57 PM, Adrian Crum wrote: That link doesn't work. chris snow wrote: I have put some instructions at http://cwiki.apache.org/confluence/x/rQPifor manually exporting services with REST.

Re: integration of JBoss and JBPM with OFBiz

2010-03-08 Thread Shi Jinghai
We'll move this integration and htmlreport component to langhua.org in this week. I'll send a message to you when completed. Regards, Shi Jinghai/Beijing Langhua Ltd. 在 2010-03-08一的 04:49 -0800,thiru_k写道: Hi.. this is kiran. I am a newbie to OFBiz. i have succesfully installed Jbpm-jpdl

Re: Ecommerce Bug?

2010-03-08 Thread Scott Gray
+1 Regards Scott HotWax Media http://www.hotwaxmedia.com On 8/03/2010, at 2:51 AM, Bilgin Ibryam wrote: I see that the default datetime_format for FTLs is set to -MM-dd HH:mm:ss.SSS but the default date_format is not set. In that case date objects gets formatted according to the user

Define view-entity with SQL statement.

2010-03-08 Thread Chatree Srichart
Is it possible if I need to define view-entity with SQL statement because I need to use NESTED SELECT statement?

groovy code completion

2010-03-08 Thread zhiyongcui
Why my groovy code completion is disabled in ofbiz project? The IDE I used is eclipse 3.5. -- View this message in context: http://n4.nabble.com/groovy-code-completion-tp1585483p1585483.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Define view-entity with SQL statement.

2010-03-08 Thread Hans Bakker
View entities are not created in the database. They are used for the sql queries generated by OFBiz using the OFBiz view definition. Dynamic views could be an answer here. An example you can find in the ProductSearch.java file and search for 'DynamicViewEntity' Regards, Hans --

Re: Define view-entity with SQL statement.

2010-03-08 Thread Hans Bakker
Please do not post in both mailing lists. I have answered your question in the user mailing list. On Tue, 2010-03-09 at 09:43 +0700, Chatree Srichart wrote: Is it possible if I need to define view-entity with SQL statement because I need to use NESTED SELECT statement? -- Antwebsystems.com:

Re: Define view-entity with SQL statement.

2010-03-08 Thread Scott Gray
It should be possible to construct the same view with a static view entity definition as it is with a DynamicViewEntity, the only difference between the two is the dynamic nature of the latter i.e. you can construct the view at runtime to only query the data you actually need. Regards Scott

context does not preserve variable when invoked from GroovyUtil.runScriptAtLocation

2010-03-08 Thread Patrick
Please help, I'm super stuck. In the file EmailServices.java: The function sendMailFromScreen has an orderId in bodyParameters. Context is passed to runScriptAtLocation in GroovyUtil.java. The orderId is available here. :) The function runScriptAtLocation calls this groovy file,

Re: Problem with Autocomplete in ofbiz?

2010-03-08 Thread Rishi Solanki
Hi Vasu, Here I'm giving an example of autocompleter using ftl. Refer the geoAutoCompleter.js here you can see the 2 functions as follows ; getCountryList() and callCountryAutocompleter(transport). Here are pre-requested things which needs to be get when you want autocompleter on a field. For

Re: context does not preserve variable when invoked from GroovyUtil.runScriptAtLocation

2010-03-08 Thread Scott Gray
Hi Patrick, Just a blind guess but have you tried getting the orderId from within bodyParameters? i.e. orderId = bodyParameters.orderId Sorry if that is exactly what you are doing. Regards Scott HotWax Media http://www.hotwaxmedia.com On 8/03/2010, at 9:28 PM, Patrick wrote: Please help,

Set profile default error

2010-03-08 Thread Suresh Yellamaraju
Hi When I try to save the default shipment method in the profile of the ecommerce app, I get the below error. 9.04 release. I am logged in as the user of that party. After snooping around I noticed that the party id is probably not getting passed to this service setPartyProfileDefaults and as a

Demo server

2010-03-08 Thread Jacques Le Roux
Hi, I have just updated and rebooted the demo server Jacques

Re: integration of JBoss and JBPM with OFBiz

2010-03-08 Thread chris snow
Hi Shi - I look forward to this! Do you have drools integration too? I have done some integration with drools, but it was a bit of a hack due to time constraints. Cheers, Chris -- View this message in context:

How To Change Security Redirect URL in OFBiz Shopping Cart?

2010-03-08 Thread BrettS
Hi, I want to change URL that security will redirect to when a user is not logged in. For example, if you hit the Check out link in the ecommerce shopping cart before logging in, OFBiz will redirect you to the checkLogin URL. I presume this is because of the setting security https=true