FIlePathField does not update

2009-06-26 Thread Kusako
Hi- I have a FilePathField in a form that displays directory contents as expected. However if I add or remove a file to/from the directory the change is not updated in the form. I'm probably just using FilePathField in a wrong way... Here is the from: from django import forms class MyForm(form

Re: Can I use django-filebrowser in a form?

2009-06-25 Thread Kusako
Sorry, didn't realize there is a separate group for django- filebrowser. See discussion here: http://groups.google.com/group/djangofilebrowser/browse_thread/thread/2695f83907082896# On Jun 24, 6:57 pm, Kusako wrote: > Hi- > > I have a form, not backed by a model and would like

Re: Django admin interface for Web service

2009-06-24 Thread Kusako
Tful > > http://bitbucket.org/david/django-roa/ > > Goulwen > > On Jun 23, 6:39 pm, Kusako wrote: > > > Hi- > > > I need to access an XMLRPC web service from the Django admin > > interface. Basically what I need is some create forms that will send > > data to

Re: Using Models for non database obejcts?

2009-06-24 Thread Kusako
Thanks for the rhelp, this clears things up. -markus On Jun 24, 1:21 pm, Russell Keith-Magee wrote: > On Wed, Jun 24, 2009 at 7:03 PM, Kusako > wrote: > > > Hi- > > > Is it possible to use models for objects that are not supposed to be > > persisted to the data

Can I use django-filebrowser in a form?

2009-06-24 Thread Kusako
Hi- I have a form, not backed by a model and would like to use django- filebrowser for one of its field. Is this possible? I tried someting like my_file = FileBrowseFormField () for my form, but wouldn't work. Thanks for your help, -markus --~--~-~--~~~---~--~~

Using Models for non database obejcts?

2009-06-24 Thread Kusako
Hi- Is it possible to use models for objects that are not supposed to be persisted to the database, or read from it? I would like to use ModelForms, etc for them, but they should not have a table in the db or written to or read from the db. Any help would be appreciated, -markus --~--~-~

Django admin interface for Web service

2009-06-23 Thread Kusako
Hi- I need to access an XMLRPC web service from the Django admin interface. Basically what I need is some create forms that will send data to the web service instead of storing to a database. As I'm somewhat new to Django I'm wondering about the best way to accomplish this. Should I just create