Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Stéphane Brault
Hi, when I use formlib the traditional way (registering the page via ZCML, going to it via the ZMI), everything works fine. The problem is I can't access it programatically. The thing I try to do is : - call a method via JSON RPC (by the way jsonserver is great ;-)) - in this method

Re: Re : [Zope3-Users] formlib problem

2006-04-19 Thread Jim Washington
Stéphane Brault wrote: Hi again, sorry to be a bore ;-) I keep on trying to use formlib, I no longer have a problem of adapters for my fields but I get this error: 2006-04-19T16:13:32 ERROR root C:\Python24\Lib\site-packages\zope\publisher\publish.py line 138 in publish = 'result =

Re: Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Jim Washington
Stéphane Brault wrote: Hi Jim, the Items object is my object, linked to my items, table which implements the IItems interface I use for my form: from neteven.interfaces.items import IItems from zope.formlib import form class ItemsForm(form.EditForm): form_fields =

Re: FW: Re : Re : [Zope3-Users] formlib problem

2006-04-19 Thread Pete Taylor
: [Zope3-Users] formlib problem Hi, when I use formlib the traditional way (registering the page via ZCML, going to it via the ZMI), everything works fine. The problem is I can't access it programatically. The thing I try to do is : - call a method via JSON RPC (by the way jsonserver