Re: Need help in posting Multi select option from HTML to MongoDB using Mongoengine

2017-03-07 Thread Carlos Andre
Vinay to this do the simple. The form interprets normally the models. Example: models.py from mongoengine import * class person(Document): name = StringField(max_length = 150) club = EmbeddedModelField(club) class club(Document): name = StringFiend(max_length = 150) form.py class FormPerson

Need help in posting Multi select option from HTML to MongoDB using Mongoengine

2017-03-07 Thread vinay.marpina
Hi All, I am trying to implement a Multi select input box in my Html page. Once user select multiple check boxes all the data for that specific field need to store in MongoDB as a part of json. I am not able to understand how i can Multi Select input box created in Html can be connected to Back