Re: [Zope3-Users] providing IInputWidget using zope:view?

2005-06-08 Thread Dylan Reinhardt
On 6/2/05, Garrett Smith <[EMAIL PROTECTED]> wrote: > Tale a look at: > > src/zope/app/form/browser/configure.zcml Thanks. It took me a while to come back to this, but your pointer ended up being very helpful. Once I ruled out my ZCML as the problem, I was able to identify the *real* problem.

RE: [Zope3-Users] providing IInputWidget using zope:view?

2005-06-02 Thread Garrett Smith
Oops...I see the example you list for your own code looks correct. Here are some issues to consider for troubleshooting your problem: - Are you getting an error when one of your fields shows up in an edit form? If so, your first clue will be to look at the error message ;) - If not (assuming thi

RE: [Zope3-Users] providing IInputWidget using zope:view?

2005-06-02 Thread Garrett Smith
Tale a look at: src/zope/app/form/browser/configure.zcml This is where the Zope widgets are registered for various field types. E.g. here's a registration that provides IInputWidget for ITextLine fields via the TextWidget class. -- Garrett Dylan Reinhardt wrote: > So I've got some custom