attribute "external-view"

2007-12-31 Thread Jonathon -- Improov
Does it work? I'm talking about the attribute "external-view" for subelement of a . How does it work? Jonathon

Re: attribute "external-view"

2007-12-31 Thread BJ Freeman
http://ofbiz.apache.org/docs/control.html#RequestHandler to my knowledge it is not used in ofbiz. Jonathon -- Improov sent the following on 12/31/2007 1:33 AM: > Does it work? I'm talking about the attribute "external-view" for > subelement of a . How does it work? > > Jonathon > > >

Re: attribute "external-view"

2007-12-31 Thread BJ Freeman
Guess I should clarify. it is default=true, so is is used all the time. However it is not used in false mode, which would require it to be declared. BJ Freeman sent the following on 12/31/2007 2:11 AM: > http://ofbiz.apache.org/docs/control.html#RequestHandler > to my knowledge it is not used in

Re: attribute "external-view"

2007-12-31 Thread Jonathon -- Improov
Just to clarify something about a quirk of mine. ;) I usually post to ML after digging through the codes. Look through my previous posts, see habits. This is not referring to you in particular, BJ. Just sending note to self and other potential reverse-engineers here. The codes seem to indicat

Ofbiz authentication/authorization design

2007-12-31 Thread Yin T
Hello, Would someone direct me to documentations that might explain the authentication and authorization design and implementation as realized in ofbiz? Thanks -- View this message in context: http://www.nabble.com/Ofbiz-authentication-authorization-design-tp14559052p14559052.html Sent from the

Re: attribute "external-view"

2007-12-31 Thread BJ Freeman
so noted. will ignore such posts in the future. :) Jonathon -- Improov sent the following on 12/31/2007 3:18 AM: > Just to clarify something about a quirk of mine. ;) I usually post to ML > after digging through the codes. Look through my previous posts, see > habits. > > This is not referring to

Re: Ofbiz authentication/authorization design

2007-12-31 Thread BJ Freeman
some links The old Wiki is a great source of information: http://ofbizwiki.go-integral.com/Wiki.jsp?page=Security -Adrian I spend some hours to find out how the security on OFBiz works.. (need it for the project manager) and documented it in: http://docs.ofbiz.org/display/OFBTECH/OFBiz+security

OfBiz beginner questions

2007-12-31 Thread Ritz123
Hi, Apologize if the question has been asked before. I have been trying to read up all the available "free" documentation and I am bit confused. 1. The documentation for most part seems alteast a year or 2 old and doesnt seem totally relevent 2. Opentaps site has some good practices which cont

What is the state of Human Resource component?

2007-12-31 Thread Yin T
Hello All, I would like to know what is the state of the Human Resource component. I have checked JIRA and found that there is not much bug activity related to this component. Does that mean that it component is working perfectly and meets everyone's needs/expectations or not too many people ar

Re: What is the state of Human Resource component?

2007-12-31 Thread BJ Freeman
this is a partial reply, hopefully others will jump in. HR component, has all the needed data structure per the Data model book. there has been some recent work done around may. Feed back was requested but none received at this point. The UI is very basis and could use more help. I you have some en

Adding AJAX to current UI, any potential complications?

2007-12-31 Thread Yin T
Hello, I would like to know what technical complications needs to be considered if the current UI (using screens,forms,widgets) were enhanced with AJAX. Is it even possible? Any comment would be greatly appreciated. Thanks -- View this message in context: http://www.nabble.com/Adding-AJAX-to-cu

Re: Adding AJAX to current UI, any potential complications?

2007-12-31 Thread BJ Freeman
there has been discussion of this in the past. do a google search for ofbiz ajax. or search the mail archives. Yin T sent the following on 12/31/2007 2:44 PM: > Hello, > I would like to know what technical complications needs to be considered if > the current UI (using screens,forms,widgets) were

Workeffortmgr_update permissions?

2007-12-31 Thread Christopher L
Hi. Has anyone been working on the permissions of workeffortmgr_update? I now get errors when I purchase an aggregate item through the POS with the current SVN. I have also wiped my DB and am running with the lastest demo data. If anyone can point me in the right direction on this, I'd grea

Re: OfBiz beginner questions

2007-12-31 Thread David E Jones
You didn't mention which OFBiz documentation you looked at, but there are certainly resources that are maintained over time and most of the older documents are still very applicable in spite of their age (most of the main patterns and lower level tools in OFBiz haven't changed in years...

findListIteratorByCondition performance

2007-12-31 Thread Chris Howe
I've recently been playing with a data set that has about 4 million records in the Person entity and am having some performance issues in the Entity Data Maintenance portion of Webtools. The only search term is partyTypeId="PERSON" The bottleneck is the resultEli = delegator... It takes about 30

Re: findListIteratorByCondition performance

2007-12-31 Thread BJ Freeman
just curious for a 4 million records lowIndex, highIndex - lowIndex + 1 1, 4million- 1+1 = 4million. the other is for 200 only. Chris Howe sent the following on 12/31/2007 5:24 PM: > I've recently been playing with a data set that has about 4 million > records in the Person entity and am having s

Re: findListIteratorByCondition performance

2007-12-31 Thread Chris Howe
The webtools entity maint paginates 50 records @ a time --- BJ Freeman <[EMAIL PROTECTED]> wrote: > just curious for a 4 million records > lowIndex, highIndex - lowIndex + 1 > 1, 4million- 1+1 = 4million. > the other is for 200 only. > > > Chris Howe sent the following on 12/31/2007 5:24 PM: >

Re: findListIteratorByCondition performance

2007-12-31 Thread BJ Freeman
I change the qty in the URL to get higher number per page. assumed you did the same. :) Chris Howe sent the following on 12/31/2007 8:14 PM: > The webtools entity maint paginates 50 records @ a time > > > --- BJ Freeman <[EMAIL PROTECTED]> wrote: > >> just curious for a 4 million records >> lo

Re: Workeffortmgr_update permissions?

2007-12-31 Thread Scott Gray
It's to do with the ResourceBundles (uiLabels) not permissions, it's weird though, I'm seeing the problem on the demo server (try creating a new example in the example app) but not on my local copy (updated to now). Regards Scott On 01/01/2008, Christopher L <[EMAIL PROTECTED]> wrote: > > Hi. > >