Tagged Questions
formalchemy is a python library that allows for easy HTML forms manipulation when using SQLAlchemy models.
3
votes
1answer
298 views
Alternate forms libraries on django eg sprox, formalchemy
Has anyone had any joy/pain with using other form libraries in django projects (with SQLAlchemy models initially, but perhaps to use with django models in future)?
Initial impressions are that sprox ...
2
votes
3answers
469 views
Do not require non-NULL field (allow empty strings) in FormAlchemy
I'm fairly novice to FormAlchemy and it seems that I don't get something. I have a SQLAlchemy model defined like this:
...
class Device(meta.Base):
__tablename__ = 'devices'
id = ...
1
vote
0answers
21 views
Formalchemy - form for one to many relation
I've got simple 'one-to-many' relation written with sqlalchemy:
class Product(Base, Asset):
description = Column(sa.Text)
image = Column(sa.VARCHAR(length=150))
...
1
vote
1answer
25 views
FormAlchemy drop down list not setting values
All Im trying to do is set the values of a drop down list using a dictionary using formalchemy 1.3.5.
The documentation reads:
Methods taking an options parameter will accept several ways of ...
1
vote
1answer
889 views
Pyramid and FormAlchemy admin interface
I have a pyramid project using the formalchemy admin interface. I added the basic ACL authentication and the pyramid_formalchemy plugin always denys even though I am authenticated.
Any thoughts on ...
1
vote
1answer
245 views
How can I add new objects to FormAlchemy's Grid
I'd like to implement an "add row" button on some of my FormAlchemy grid forms to create objects.
Reading through the source it would appear that there isn't this functionality at present so wondered ...
0
votes
3answers
155 views
Admin interface for SQLAlchemy?
I've been developing a Django app, however I've recently changed the overall architecture plan. I no longer need a web-framework, just a simple Python script, so I'm changing from using the Django ORM ...
0
votes
1answer
26 views
Is it possible to set the default value of a drop down list using FormAlchemy?
I have a drop down list of locations for employees and I need the list to have their current location set when the page is opened.
Is it possible to set the value of a drop down list using ...
0
votes
1answer
103 views
custom pyramid_formalchemy forms
I'm having problems creating custom forms in pyramid_formalchemy. I suspect there is a bug in the package and wanted to confirm I'm not missing anything. My setup looks like this:
def ...
0
votes
1answer
27 views
formalchemy.ext.fsblob.FileFieldRenderer and “Remove” checkbox
I'm creating a FieldSet for my User model like this:
fs = FieldSet(User)
fs.configure(pk=False,
include=[fs.picture_url.with_renderer(
FileFieldRenderer.new
...