[jira] [Updated] (OFBIZ-4959) Logout do not remove autoLogin

2012-07-11 Thread JIRA
[ https://issues.apache.org/jira/browse/OFBIZ-4959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Roberto Benítez Monje updated OFBIZ-4959: - Description: Logout method do not disable autoLogin functionality. Instead of

Javascript style we have used for validating alphanumeric and spaces are not allowed

2012-07-11 Thread Raghu Chandra
Hi., i am raghu here, can any one please tell me what is the widget-style = we will use for validating only alphanumeric non space. Thank you. - Raghu

Discussion: Move Scripting Code To A Script Component

2012-07-11 Thread Adrian Crum
The code for scripting support is scattered across several different components. I would like to move all scripting-related code to a separate component called script or scripting. I believe this will help make things more modular and independent. What do you think? -Adrian

Re: Javascript style we have used for validating alphanumeric and spaces are not allowed

2012-07-11 Thread SAURABH SINGH
If you are using in the script . use thi function function alphanumeric(value,field){ var alphaExp = /^[0-9a-zA-Z]+$/; var input = alphaExp.test(value); if(value == ) { return true; } if(input == true) { return true;

[jira] [Closed] (OFBIZ-4839) Remove Code Related To Incomplete Authz Implementation

2012-07-11 Thread Adrian Crum (JIRA)
[ https://issues.apache.org/jira/browse/OFBIZ-4839?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrian Crum closed OFBIZ-4839. -- Resolution: Fixed Done, rev 1360283. Remove Code Related To Incomplete Authz

Re: svn commit: r1360215 - /ofbiz/site/VideosConf.html

2012-07-11 Thread Jacques Le Roux
Thanks Christian, This has only historical purpose, but it could not be neglected :o) Jacques From: chr...@apache.org Author: chrisg Date: Wed Jul 11 14:57:32 2012 New Revision: 1360215 URL: http://svn.apache.org/viewvc?rev=1360215view=rev Log: 2005 Conference Videos links now pointing to

Re: Discussion: Move Scripting Code To A Script Component

2012-07-11 Thread BJ Freeman
are you thinking of just mini, or js, grouvy or what ever? Adrian Crum sent the following on 7/11/2012 7:16 AM: The code for scripting support is scattered across several different components. I would like to move all scripting-related code to a separate component called script or scripting. I

Re: Discussion: Move Scripting Code To A Script Component

2012-07-11 Thread Jacques Le Roux
It's not quite clear to me Jacques From: Adrian Crum adrian.c...@sandglass-software.com The code for scripting support is scattered across several different components. I would like to move all scripting-related code to a separate component called script or scripting. I believe this will

[jira] [Created] (OFBIZ-4960) Example Application Issues

2012-07-11 Thread Tom Burns (JIRA)
Tom Burns created OFBIZ-4960: Summary: Example Application Issues Key: OFBIZ-4960 URL: https://issues.apache.org/jira/browse/OFBIZ-4960 Project: OFBiz Issue Type: Bug Affects Versions:

[jira] [Updated] (OFBIZ-4960) Example Application Issues

2012-07-11 Thread Tom Burns (JIRA)
[ https://issues.apache.org/jira/browse/OFBIZ-4960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Burns updated OFBIZ-4960: - Attachment: OFBIZ-4960 Example.patch Example Application Issues --

[jira] [Created] (OFBIZ-4961) 09.04 Release from OFBiz Home link broken

2012-07-11 Thread Tom Burns (JIRA)
Tom Burns created OFBIZ-4961: Summary: 09.04 Release from OFBiz Home link broken Key: OFBIZ-4961 URL: https://issues.apache.org/jira/browse/OFBIZ-4961 Project: OFBiz Issue Type: Bug

[jira] [Updated] (OFBIZ-4961) 09.04 Release from OFBiz Home link broken

2012-07-11 Thread Tom Burns (JIRA)
[ https://issues.apache.org/jira/browse/OFBIZ-4961?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tom Burns updated OFBIZ-4961: - Attachment: demo-old.ofbiz.jpg 09.04 Release from OFBiz Home link broken

[jira] [Commented] (OFBIZ-4961) 09.04 Release from OFBiz Home link broken

2012-07-11 Thread Tom Burns (JIRA)
[ https://issues.apache.org/jira/browse/OFBIZ-4961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13412416#comment-13412416 ] Tom Burns commented on OFBIZ-4961: -- To reproduce go to http://ofbiz.apache.org/ and click

New MultiTenant - At runtime

2012-07-11 Thread pankaj
Hi All, We followed steps given in below link for multi tenant and it was quite helpful. https://cwiki.apache.org/confluence/display/OFBIZ/Multitenancy+support#Multitenancysupport-Settingtheecommerceapp.touseanspecificTenantDatabase But Tenant Data loading and other configuration setting is

[jira] [Created] (OFBIZ-4962) ECommerce application, productdetail is not fully internationalized

2012-07-11 Thread Carsten Schinzer (JIRA)
Carsten Schinzer created OFBIZ-4962: --- Summary: ECommerce application, productdetail is not fully internationalized Key: OFBIZ-4962 URL: https://issues.apache.org/jira/browse/OFBIZ-4962 Project:

[jira] [Updated] (OFBIZ-4962) ECommerce application, productdetail is not fully internationalized

2012-07-11 Thread Carsten Schinzer (JIRA)
[ https://issues.apache.org/jira/browse/OFBIZ-4962?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Carsten Schinzer updated OFBIZ-4962: Attachment:

Re: Javascript style we have used for validating alphanumeric and spaces are not allowed

2012-07-11 Thread Himanil Gupta
Hi Raghu, 'widget-style' are used to apply css to the widget that the user will interact with, for field. Instead you can use 'event' and 'action' attributes to achieve the required functionality for field. e.g. 1- field name=yourFieldName title=${uiLabelMap.yourTitle} event=defineEventType