Re: How to get this widget

2007-03-06 Thread
johnson bart remmerie 提到: Could you please give the use case for this ? I think there could be a more simple solution (if the use case is what I think it is). Bart 2007/3/6, Jason Johnston [EMAIL PROTECTED]: 許議中 wrote: using repeaterList.getRow(i).lookupWidget(item/01/url); --- it's

Re: boolean field with inplace edit

2007-03-06 Thread
, Jeroen Reijn 許議中 wrote: Hi! I using the inplace edit, but boolean field redered to a text field, not check box. fd:field id=marquee fd:labeli18n:textmarquee/i18n:text/fd:label fd:hinti18n:textmarquee/i18n:text/fd:hint fd:datatype base=boolean/ /fd:field ft:widget id=marquee fi:type

How to get this widget

2007-03-05 Thread
Hi! I've a form, the def is like. fd:form xmlns:fd=http://apache.org/cocoon/forms/1.0#definition; xmlns:i18n=http://apache.org/cocoon/i18n/2.1; fd:widgets . fd:repeater id=repeaterList orderable=true fd:widgets fd:output id=itemno

Re: How to get this widget

2007-03-05 Thread
In Javascript (FlowScript) There're several rows in the repeater, I can get the itemno wigdet with repeaterList.getRow(i).getChild(itemno) But I can't get the url widget in the 01 group. johnson Jason Johnston 提到: 許議中 wrote: Hi! I've a form, the def is like. fd:form xmlns:fd=http

Re: How to get this widget

2007-03-05 Thread
Jason Johnston 提到: 許議中 wrote: In Javascript (FlowScript) There're several rows in the repeater, I can get the itemno wigdet with repeaterList.getRow(i).getChild(itemno) But I can't get the url widget in the 01 group. What have you tried? If I understand your example it should

inline edit template

2007-03-05 Thread
Hi! I using the inline edit, but boolean field redered to a text field, not check box. fd:field id=marquee fd:labeli18n:textmarquee/i18n:text/fd:label fd:hinti18n:textmarquee/i18n:text/fd:hint fd:datatype base=boolean/ /fd:field ft:widget id=marquee fi:type=inplace/ johnson

boolean field with inplace edit

2007-03-05 Thread
Hi! I using the inplace edit, but boolean field redered to a text field, not check box. fd:field id=marquee fd:labeli18n:textmarquee/i18n:text/fd:label fd:hinti18n:textmarquee/i18n:text/fd:hint fd:datatype base=boolean/ /fd:field ft:widget id=marquee fi:type=inplace/ johnson

Nested Objects Cocoon Form Binding

2007-03-03 Thread
Hi! Below is running in OJB 1.0.4 Cocoon 2.1.0 I've a set of tables with three layers. First Layer: The main table. with a primary key. Second Layer: The sub table, with a primary key, and a forean key refer to main table. it's one to many. Tress Layer: many tables with different type,

muti-layer binding

2007-03-02 Thread
Hi! I've a form with muti-layer tables, main is content1 sub is content2 and there're many sub table in content2 like type01 here is some code. this is ok in form show and it's action, but how to binding type01. Best Regards johnson fd:widgets fd:field id=pageno required=true

how to access event of form in flowscript

2007-02-25 Thread
Hi! Does any one know how to access event of form in flowscript for 2.1.10, ex. onClick... Best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how to call form object in form definition

2007-02-25 Thread
Hi! map:match pattern=*.form map:call function=handleForm map:parameter name=function value={1}/ map:parameter name=definitionURI value=forms/{1}_model.xml/ map:parameter name=bindingURI value=forms/{1}_bind_bean.xml/ /map:call /map:match in flow:

error of Upload Media

2007-02-22 Thread
Hi! The Upload Media sample in 2.1.10 had some problem. here's the message. Request Attributes org.apache.cocoon.components.modules.output.OutputModule:errorMessage =Unexpected token: CURRVAL in statement [SELECT currval('media_id_seq')]

Dojo UTF-8

2007-02-21 Thread
Hi! In 2.1.10, when open AJAX Mode, the UTF-8 fonts will become a hex code. In 2.1.7 version, the old one, there is a fix in cocoon-ajax.js like req.setRequestHeader(Content-Type, application/x-www-form-urlencoded; \ charset=UTF-8); but now ajax is rewrite by DOJO, how to fix

Re: Dojo UTF-8

2007-02-21 Thread
Found it! just set below in template!! var djConfig = { bindEncoding: utf-8 }; johnson 許議中 提到: Hi! In 2.1.10, when open AJAX Mode, the UTF-8 fonts will become a hex code. In 2.1.7 version, the old one, there is a fix in cocoon-ajax.js like req.setRequestHeader(Content-Type

Re: How to integrate Dojo inline editor into CForms?

2007-02-19 Thread
There're samples in cocoon 2.1.10 forms like http://localhost:8080/cocoon/samples/blocks/forms/do-dojoRepeater.flow johnson Dev at weitling 提到: Hi! I want to integrate (and modify) Dojo's inline editor or something similar with Cocoon Forms for getting a visually more clean GUI of a form.

Re: about ajax-action --help

2007-02-18 Thread
I put the cform app into coplets directory, and everything ok. But new problem raise up, because of AJAX, If I edit the form then move to other tab of portal and than back to the form , the cform will back to the original state. any idea? Best Regards johnson 許議中 提到: if I turn

[SHARE] CForm in Portal

2007-02-18 Thread
Hi! I just combine CForm to portal in 2.1.10, everything is good, include pojo and ajax, but in ajax mode, the portal won't cache the cform's data will try to solve it. here is the step. 1. because of lacking of javascript in portal, I put some java script to portal-page.xsl in

about ajax-action --help

2007-02-17 Thread
Hi! I've a form in portal want to use ajax, the template like ft:form-template action=#{$cocoon/continuation/id}.continue method=POST ajax-action=#{$cocoon/continuation/id}.continue ajax=true this will cause error, and in mozilla will open a new page, and there is a blank coplet page in it.

Re: about ajax-action --help

2007-02-17 Thread
hi! I change it to this, it's work. ft:form-template action=#{$cocoon/continuation/id}.continue method=POST ajax-action=//samples/blocks/forms#{$cocoon/continuation/id}.continue ajax=true but the behavior of pojo is strange, I use the example Drag and drop reordering, in-place editing 1. The

Re: about ajax-action --help

2007-02-17 Thread
In ie6, ie will prompt a warning unsafe message, press yes, ie show request fail, press no, it's ok. vary strange. johnson 許議中 提到: hi! I change it to this, it's work. ft:form-template action=#{$cocoon/continuation/id}.continue method=POST ajax-action=//samples/blocks/forms#{$cocoon

Re: about ajax-action --help

2007-02-17 Thread
if I turn of the switch of access other domain data source(I guess so, because I use chinese version) in ie6, It work. why? johnson 許議中 提到: In ie6, ie will prompt a warning unsafe message, press yes, ie show request fail, press no, it's ok. vary strange. johnson 許議中 提到: hi! I change

ajax in portal

2007-02-14 Thread
Hi! I put the cfrom into portal, it works now, but ajax does not work in portal! I change the template from: ft:form-template action=#{$cocoon/continuation/id}.continue method=POST ajax=true to: ft:form-template action=#{$cocoon/continuation/id}.continue method=POST

cform in portal

2007-02-07 Thread
Hi! does anybody know how to put cform to portal in 2.1.10. Best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to read an input field of form in sitemap

2007-02-04 Thread
Hi! I've a simple form form action=type4-search method=post select name=keyno xsl:for-each select=option option xsl:attribute name=valuexsl:value-of select=optionno//xsl:attribute xsl:value-of select=optionname/

i18n cache

2007-01-29 Thread
Hi! I turn the cache off on sitemap with cache-at-startupno/cache-at-startup. when I change the text in catalogue, but the web page never changed unless I restart the tomcat, How to change the web page without tomcat restart. best regards johnson

Re: i18n cache

2007-01-29 Thread
Tks How to touch the xsl page in runtime. Best Regards johnson Ard Schrijvers 提到: Hello, because the I18nTransformer returns a NOPValidity this behavior is seen. cache-at-startup true or false does not change this. There are ways to get around it without having to restart the tomcat

Re: i18n cache

2007-01-29 Thread
addtional info I'm using i18n in xsp. I put the catalogue file into DB, then using esql xsp to read it out. johnson 許議中 提到: Tks How to touch the xsl page in runtime. Best Regards johnson Ard Schrijvers 提到: Hello, because the I18nTransformer returns a NOPValidity this behavior

Re: i18n cache

2007-01-29 Thread
Hi! I use the clearcache html in the sample org.apache.cocoon.components.store.impl.EHDefaultStore is clear org.apache.cocoon.components.store.impl.DefaultTransientStore is not clear and the i18n is the same, no change. Ard Schrijvers 提到: Hello, because the I18nTransformer returns a

Re: i18n cache

2007-01-29 Thread
I change the xsp file, it do not work at all. johnson Ard Schrijvers 提到: Hello, because the I18nTransformer returns a NOPValidity this behavior is seen. cache-at-startup true or false does not change this. There are ways to get around it without having to restart the tomcat all

Re: i18n cache

2007-01-29 Thread
my holiday, somewhere in march i think) Ard addtional info I'm using i18n in xsp. I put the catalogue file into DB, then using esql xsp to read it out. johnson 許議中 提到: Tks How to touch the xsl page in runtime. Best Regards johnson Ard Schrijvers 提到: Hello, because

Re: i18n cache

2007-01-29 Thread
store to clear) Then again, still, there is this i18n transformer nopvalidity problem which i hope to fix (after my holiday, somewhere in march i think) Ard addtional info I'm using i18n in xsp. I put the catalogue file into DB, then using esql xsp to read it out. johnson 許議中 提到: Tks

Re: i18n cache

2007-01-29 Thread
hope to fix (after my holiday, somewhere in march i think) Ard addtional info I'm using i18n in xsp. I put the catalogue file into DB, then using esql xsp to read it out. johnson 許議中 提到: Tks How to touch the xsl page in runtime. Best Regards johnson Ard Schrijvers 提到: Hello

Re: i18n cache

2007-01-29 Thread
transformer nopvalidity problem which i hope to fix (after my holiday, somewhere in march i think) Ard addtional info I'm using i18n in xsp. I put the catalogue file into DB, then using esql xsp to read it out. johnson 許議中 提到: Tks How to touch the xsl page in runtime. Best Regards johnson

Re: i18n cache

2007-01-29 Thread
it out. johnson 許議中 提到: Tks How to touch the xsl page in runtime. Best Regards johnson Ard Schrijvers 提到: Hello, because the I18nTransformer returns a NOPValidity this behavior is seen. cache-at-startup true or false does not change this. There are ways to get around it without having

cform portal ajax pojo

2007-01-29 Thread
Hi! I want to integrate cform to portal, It's successful in 2.1.7 with ajax. Now I try to do the same in 2.1.10, ordinary form ok, but no ajax and pojo, and there're errors at the bottom of portal: FATAL: Could not load 'cocoon.forms.common'; last tried '__package__.js' FATAL: symbol

Shift-JIS

2007-01-22 Thread
Hi! I've a web app, most of them is UTF-8, but some pages are pure Shift-JIS(not UTF-8) for japanese wap pages, How can I do in i18n. Best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

How to get authentication contex in auth-fw

2007-01-18 Thread
Hi! How to get authentication contex in auth-fw(flow), in the samples.js login function, I want to get some info from it, I use this method if (auth_login(handler, null, cocoon.parameters)) { var contextMan =

Re: How to get authentication contex in auth-fw -- solve

2007-01-18 Thread
= Packages.org.apache.cocoon.xml.dom.DOMUtil.getValueOfNode(userFrag); ---this 許議中 提到: Hi! How to get authentication contex in auth-fw(flow), in the samples.js login function, I want to get some info from it, I use this method if (auth_login(handler, null, cocoon.parameters)) { var contextMan

auth handler parameter

2007-01-16 Thread
Hi! In auth-fw the authentication-manager define like this : authentication-manager handlers handler name=flowdemohandler redirect-to uri=cocoon:/login/ authentication uri=cocoon:raw:/authenticate/ /handler /handlers

Re: redir in auth-fw

2007-01-16 Thread
tks got the resource, but the resource is like http://localhost:8080/...?p=1 how to get the parameter p in resource best regards johnson Carsten Ziegeler 提到: Hi, if you just specify redirect-to uri=cocoon:/login/ the authentication-fw will automatically call

i18n and database

2007-01-15 Thread
Hi! I'm try to put the i18n xml file to DB. Here is the i18n setting in sitemap.xmap map:components !--**i18n*-- map:transformers default=xalan

Re: i18n and database -- solve

2007-01-15 Thread
Solve it! just change it locationi18n/location to locationcocoon:/i18n/location 許議中 提到: Hi! I'm try to put the i18n xml file to DB. Here is the i18n setting in sitemap.xmap map:components !--**i18n

Re: Cocoon 2.2 and portal

2007-01-10 Thread
pls see WEB-INF/classes/repository.xml or repository_database.xml in jdbc-connection-descriptor must had a connection with default-connection=true when you connect to database with assign the database. Best Regards johnson Jean-Christophe Kermagoret 提到: Hello, I'm trying to use portal

how to add addtional info to auth-fw

2006-12-13 Thread
Hi! In auth-fw, How to add some addtional request parameter to auth-fw authentication session context. johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

multiple sessions

2006-12-13 Thread
Hi! can I use multiple sessions in cocoon. johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: map parameter wildcard

2006-12-12 Thread
the source. Does it work then? If so, it would mean it can access it, but the authentication fails. What is the error message you're getting and what version of cocoon are you using? Kind regards, Jeroen Reijn 許議中 wrote: Hi! I've a sitemap map:match pattern=protected

how to redirect the page

2006-12-10 Thread
Hi! I've some pages protect by auth-fw, user must enter the username to enter, but the redirected page is the same page, how to redirect to the page user keyin. ex: http://localhost:8080/report/wap/protect/ will redirect to http://localhost:8080/report/wap/login when pass it must redirect

how to change xsp input encoding in xsl

2006-12-08 Thread
Hi! I want to do a form, when input some words, it can use url to call other web site to get a qrcode. the xsp input like this: form method=GET input type=text name=username xsp:attribute name=valuexsp-request:get-parameter name=username default=[yourname]

wap and portal

2006-12-04 Thread
Hi! does anybody runs cocoon portal by wml or chtml on a cell phone device? johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how to protect a sub directory with authentication-fw

2006-12-03 Thread
hi! The sample od authentication-fw show us how to protect a document with authentication-fw map:match pattern=protected map:act type=auth-protect map:parameter name=handler value=demohandler/ map:generate src=docs/protected.xml/ map:transform

All XSP SOAP samples don't work

2006-12-02 Thread
Hi! I found All XSP SOAP samples don't work, can anyone fix them! Best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to read RSS

2006-12-02 Thread
Hi! how to read RSS source in cocoon. Best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Shift-jis encoding

2006-12-01 Thread
Shift_JIS will ok johnson 許議中 提到: Hi! I want to use shift-jis and get this error An error has occured org.xml.sax.SAXParseException: Invalid encoding name Shift-JIS. context://samples/i18n/hello.xml - 1:43 here is the xml ?xml version=1.0 encoding=Shift-JIS? page xmlns:i18n

Shift-jis encoding

2006-11-30 Thread
Hi! I want to use shift-jis and get this error An error has occured org.xml.sax.SAXParseException: Invalid encoding name Shift-JIS. context://samples/i18n/hello.xml - 1:43 here is the xml ?xml version=1.0 encoding=Shift-JIS? page xmlns:i18n=http://apache.org/cocoon/i18n/2.1;

Re: Deli multiple type serialize

2006-11-29 Thread
yes, I've read it, but the serializing is seperated int two part html one and wml one, the choose of serializing type is in transformation part, how the serializing part can know this is a html call or wml call best regards johnson Jeroen Reijn 提到: Hi Johnson, i gues you should use a

Deli multiple type serialize

2006-11-28 Thread
Hi! Does anyone know how to serialize different type with one match by deli? ie: I want to use deli to recognize client device is support wml or chtml in one sitemap.xmap matching. best regards johnson - To unsubscribe,

Re: wap i18n

2006-11-26 Thread
tks, it work. and another question: how to get the HTTP_USER_AGENT for wap device by inputmodule best regards johnson Jasha Joachimsthal 提到: You need the request inputmodule for this, not the request generator (sorry for confusing you). Regards, Jasha -Original Message- From:

Re: wap i18n

2006-11-26 Thread
got it! use request-header:User-Agent johnson 許議中 提到: tks, it work. and another question: how to get the HTTP_USER_AGENT for wap device by inputmodule best regards johnson Jasha Joachimsthal 提到: You need the request inputmodule for this, not the request generator (sorry

wap i18n

2006-11-25 Thread
hi! does anybody know how to use i18n in wml best regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: wap i18n

2006-11-25 Thread
tks, try it ok, but some of device show wrong languages. how to know the {local} which the client(mobile phone) send to server. Best Regards johnnson Bertrand Delacretaz 提到: On 11/25/06, 許議中 [EMAIL PROTECTED] wrote: ...does anybody know how to use i18n in wml... Generating wml via i18n

Re: wap i18n

2006-11-25 Thread
and another question is how to know the clients side support what kind of browser (wap, xhtml...) Best Regards johnson Bertrand Delacretaz 提到: On 11/25/06, 許議中 [EMAIL PROTECTED] wrote: ...does anybody know how to use i18n in wml... Generating wml via i18n you mean? No problem

Re: wap i18n

2006-11-25 Thread
languages. how to know the {local} which the client(mobile phone) send to server. Best Regards johnnson Bertrand Delacretaz 提到: On 11/25/06, 許議中 [EMAIL PROTECTED] wrote: ...does anybody know how to use i18n in wml... Generating wml via i18n you mean? No problem: generator - transformers

the example of XSP soap out of work

2006-11-23 Thread
Hi! the example of XSP soap out of work the temperature one return -page xmlns:xsp=http://apache.org/xsp; xmlns:xscript=http://apache.org/xsp/xscript/1.0; xmlns:soap=http://apache.org/xsp/soap/3.0; xmlns:xsp-request=http://apache.org/xsp/request/2.0; -SOAP-ENV:Envelope

WML and UTF-8

2006-11-23 Thread
Hi! The sample of WML is work fine by ASCII, But how to configure it to UTF-8 best Regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cform portal WML

2006-11-22 Thread
Hi! Does anyone know can I use cform and portal with WML. best regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how to load balance in a portal

2006-10-28 Thread
Hi! I want to do a loadbalance in a portal because of heavy duty, I use apache httpd to call tomcat, using balancer in workers.properties, it really balance, but when I change from one coplet to another, it always change the service server, and cause a 404 error or logout, how to avoid it change

Re: how to load balance in a portal

2006-10-28 Thread
Apache httpd + tomcat 5.5.17 I found some resource about sticky session, still trying,tks. johnson Thomas Soddemann 提到: Hi 許議中, which application container are you using? Many application containers support clustering. With their clustering facility you can keep session intact and I guess

Re: how to call an internal-only pipeline by cocoon cron

2006-10-25 Thread
Tks if I remove the auth, it's ok, But I want to protect this code not to excute unexpectedly. johnson Stewart, Gary 提到: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 24 October 2006 13:31 To: users@cocoon.apache.org Subject: Re: how to call an

how to call an internal-only pipeline by cocoon cron

2006-10-24 Thread
Hi! I've some job need to do by scheduler, the job is protected by internal-only pipeline, When the cron do pipeline call, it's will direct to login form. best regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: how to call an internal-only pipeline by cocoon cron

2006-10-24 Thread
yes Stewart, Gary 提到: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] I've some job need to do by scheduler, the job is protected by internal-only pipeline, When the cron do pipeline call, it's will direct to login form. Do you use an authentication

how to execute cocoon cron when cocoon start-up

2006-10-24 Thread
Hi! anyone know how to execute cocoon cron without goto the cron.htm page when cocoon start up. best regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to write relational SQL by ODMG query style in OJB

2006-09-25 Thread
Hi! How to write this SQL by ODMG query style in OJB. Select a.* from A a,B b where a.id = b.id best regards johnson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cocooner in shanghai

2006-08-28 Thread
Hi! We are cocooner in Shanghai China, we have four partners now, all is chinese, want to establish a user group to spread cocoon in chinese. Welcome others to join us. 2006/9/3 AM:10:00 starbulk in friendship south city shanghai. johnson

BUG in forms-field-styling.xsl

2006-08-26 Thread
Hi! I found there's a bug in forms-field-styling.xsl. xsl:template match=fi:[EMAIL PROTECTED]'output' or fi:styling/@type='output'] priority=3 input id=[EMAIL PROTECTED] type=checkbox title={fi:hint} disabled=disabled value=[EMAIL PROTECTED] xsl:if test=fi:value != 'false' xsl:attribute

Re: BUG in forms-field-styling.xsl

2006-08-26 Thread
I have a form with a disabled check-box in it, If there is no name attribute in it, I can see the value in the form, but I can't read the fields value by script, that's why I think it's a bug. If others aggree it, I'll report it to JIRA. Best Regards johnson Jason Johnston 提到: 許議中 wrote

an RC-2 version of flow design

2005-09-29 Thread
Hi: try this http://www.soho.club.tw/cocoon/flow_chart_03/flowchart.form you can enter FileID QP-01-01 then load,then you will see the result. - Original Message - From: Johnson To: users@cocoon.apache.org Sent: Wednesday, September 28, 2005 6:13 PM Subject:

A beta version of flow design form

2005-09-27 Thread
now we intro a beta version of flow design form build by cform. http://www.soho.club.tw/cocoon/flow_chart_01/flowchart.form you can enter flowID 1 then load,then you will see the result. the final version will includeISO Work instruction Document setup. pls try and give us advice, tks.

Re: A cocoon demo site

2005-09-24 Thread
- From: 許議中 To: users@cocoon.apache.org Sent: Friday, September 23, 2005 8:40 PM Subject: A cocoon demo site Hi! This cocoon demo site add a flow design form by cform , Pls give us advice. http://www.soho.club.tw/cocoon/portal_shb user:demo Pass:demo

Re: Welcome to our cocoon site

2005-09-24 Thread
for a menu? How about a traditional hyperlink, which will always work?Best regardsHans On 9/12/05, Jeroen Reijn [EMAIL PROTECTED] wrote: Hi Johnson,no you can't. AJAX stands for Asynchronous _javascript_ and XML, so don't worryabout the _javascript_ part :-)Jeroen許議中 wrote

A cocoon demo site

2005-09-23 Thread
Hi! This cocoon demo site add a flow design form by cform , Pls give us advice. http://www.soho.club.tw/cocoon/portal_shb user:demo Pass:demo Best Regards Johnson

Re: Welcome to our cocoon site

2005-09-12 Thread
for layout. Also, the site does not work witouht _javascript_. I would recommend that you avoid _javascript_ for essential functions. Hans On 9/10/05, *許議中* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi! Here's a cocoon site build by Goodwill Technology

Re: Welcome to our cocoon site

2005-09-11 Thread
_javascript_ for essential functions.Hans On 9/10/05, 許議中 [EMAIL PROTECTED] wrote: Hi! Here's a cocoon site build by Goodwill Technology http://www.soho.club.tw/cocoon/portal_shb User:demo Pass:demo. This is a pricing system forfactory management. Now there is only

Welcome to our cocoon site

2005-09-10 Thread
Hi! Here's a cocoon site build by Goodwill Technology http://www.soho.club.tw/cocoon/portal_shb User:demo Pass:demo. This is a pricing system forfactory management. Now there is only chinese version, Both zh_TW and zh_CN. This site is build by cocoon-2.1.8-dev use portal CForm with AJAX

how to get validation status in flowscript

2005-07-02 Thread
Hi! I've a form with v2 flowscript,in fd I design a button fd:action id="save" action-command="shkh" defaul="false"fd:labeli18n:text key="save"save:/i18n:text/fd:labelfd:on-actionfd:_javascript_var parent = event.source.parent; parent.validate();/fd:_javascript_/fd:on-action/fd:actionand

Re: AJAX encoding

2005-06-22 Thread
If I set container encoding UTF-8 , It's ok. Johnson - Original Message - From: 許議中 To: users@cocoon.apache.org Sent: Wednesday, June 22, 2005 12:15 AM Subject: AJAX encoding Hi! If I use AJAX to submit my request to save the form to database

AJAX encoding

2005-06-21 Thread
Hi! If I use AJAX to submit my request to save the form to database,the chinese font in form will became ??,but showform ok. If I do not use AJAX,OK. How to avoid ??. Best Regards Johnson

Re: AJAX Bug on output widget

2005-06-19 Thread
If I use fi:field with @type='output' it ok now. So I think it's the output widget with datatype='date' not work properly under AJAX. Best Regards Johnson - Original Message - From: To: users@cocoon.apache.org Sent: Sunday, June 19, 2005 12:33 PM Subject: Re: AJAX

Re: AJAX Bug on output widget

2005-06-18 Thread
addtional info. This error occur when I set a init value for a output widget with date type.if this is a field widget it's ok. johnson - Original Message - From: Johnson To: users@cocoon.apache.org Sent: Saturday, June 18, 2005 5:45 PM Subject: AJAX Bug on output

Re: AJAX and form.js v2 ok

2005-06-12 Thread
Hi! Sorry for my words before, I've tested AJAX feature in flowscript v2 successfully,and will do more test to find if it is stable,and portal use AJAX. Best Regards - Original Message - From: Johnson [EMAIL PROTECTED] To: users@cocoon.apache.org Sent: Saturday, June 04, 2005

AJAX and form.js

2005-06-03 Thread
Hi! I see the AJAX is add to cform with form.js is v1,but I use v2 form.js How to use AJAX in v2 form.js Best Regards Johnson

Re: [cforms] AJAX support?

2005-05-27 Thread
Hi! If I use Cform in portal,is AJAX still work? Best Regards Johnson - Original Message - From: Antonio Gallardo [EMAIL PROTECTED] To: users@cocoon.apache.org Sent: Friday, May 27, 2005 8:22 AM Subject: Re: [cforms] AJAX support? On Jue, 26 de Mayo de 2005, 14:22, Leszek Gawron

Re: [cforms] AJAX support?

2005-05-27 Thread
Another question! I use JK to link apache hpptd and tomcat,AJAX Still work? Johnson - Original Message - From: [EMAIL PROTECTED] To: users@cocoon.apache.org Sent: Friday, May 27, 2005 2:11 PM Subject: Re: [cforms] AJAX support? Hi! If I use Cform in portal,is AJAX still work?

Re: [cforms] AJAX support?

2005-05-27 Thread
tks very much. we've some web site using 2.1.7,works fine,But want to not do so much refresh. Will try in a few day. Johnson - Original Message - From: Antonio Gallardo [EMAIL PROTECTED] To: users@cocoon.apache.org Sent: Friday, May 27, 2005 2:30 PM Subject: Re: [cforms] AJAX