0
votes
1answer
27 views

Django save model and its children with ModelForm

I have such models: Article, Link & ArticleLink. Article can have many links attached to it and I need to save them from one form. I have created all the relations and a ModelForm for Article, ...
0
votes
1answer
38 views

cakePHP 2 forms in the same view not working

I have a cakePHP application and I would like to have my login and signup forms to be in the same page I followed this tutorial : ...
0
votes
0answers
47 views

Spring multiple @ModelAttribute methods in the same @Controller

I have a page with two different forms (with two different submits) on Spring MVC 3, and I have a problem with @ModelAttribute methods. When I have two on the same controller, they are not always ...
0
votes
1answer
27 views

Cakephp automatically filled form select for two word named belongTo model

What is right naming or what am I missing to get automagic run for two word named Model. Actual model belong to the two words named model. Exact example: Tour belongs to Accommodation type. in ...
0
votes
0answers
48 views

Django - Changing widget on GET request according to a choice field

I want to change field widget to readonly if the choice of another form is 'YES'. This code is working fine to initiate widget state do readonly: Form: def __init__(self, *args, **kwargs): ...
0
votes
1answer
238 views

Basic user authentication example in FuelPHP

I've just started using Fuel and I'm trying to implement basic user authentication and registration using the auth package. I have a controller called auth.php in which I have action_login, ...
0
votes
1answer
87 views

Model attributes from dropdown list not transfering

I have a resume table that has (among other things) a position_type_id column that is a foreign key to the position_type table. On the resume creation form, the options for the dropdown list for ...
0
votes
1answer
28 views

Spring Form combine tTwo inputs in one path

I have this model: public class User{ private String name; private String Organization; private Strin OS; ..Setter and Getters } And this form: <form:form commandName="User" ...
1
vote
1answer
144 views

How to take data from textboxes in Django without using the automated model forms?

I have a very simple thing I want to do, but for some reason I haven't found the solution yet. I have a form in HTML <form id="user_form" method="POST" action="/ProjectName/home/"> {% ...
1
vote
2answers
107 views

Django: combine lazy translation with mark safe in model choices

Yeah, so, I want to store translated choices for my model, but Django disagrees with me on this one. Version of Django is 1.3 and the model and choices look something like this: from django.db import ...
0
votes
1answer
226 views

MyUser login in Django 1.5. Again

I try to login users from MyUser model in django 1.5. I use e-mail as login, see model: class MyUser(AbstractBaseUser): email = models.EmailField( verbose_name='email address', ...
0
votes
2answers
59 views

Can't mass-assign protected attributes: email, password

I know that you should use "attr_accessible" to allow mass-assign protection, and that's actually what I do in my user model. How come it still complains? Can't mass-assign protected attributes: ...
0
votes
2answers
62 views

How to use hidden fields using object.build or build_object in Ruby on Rails?

I have a nested user registration form. I'd like to insert data for 3 models. User, Store and Preference. The relationships are a User has_many :stores and has_one :preference. The problem I'm ...
0
votes
2answers
43 views

Append form partial in the new view of the same model in rails

i'd like to use the same model to create in one view (new.erb.html) more records at once with a single submit. for example I've a model called Report with some fields such title, description and date ...
0
votes
1answer
21 views

Running into a conflict with in my form with related models

I have a form where a user adds a new item, and as part of this they choose a category for the item. The item can be a deposit or a bill, so I want two different lists they can choose from for ...
1
vote
1answer
44 views

undefined method `password' for #<User:1123123123>

I'm following this video tutorial and learning how to create authentication from scratch: http://www.youtube.com/watch?v=O5RDisWr_7Q Here is my migration file for User: class CreateUsers < ...
3
votes
2answers
303 views

Zend Framework 2 - Annotation Forms don't work

Thanks to @Hikaru-Shindo I looked into AnnotationForms which seem to be the best available as a work-around for ModelForms. But the example shown here doesn't work for me. use ...
0
votes
1answer
35 views

Validation of specific attribute rails

I have a trouble validating one form, I have a Product model with several attributes, but I would like to make a method for validate the presence of almost one attribute of the following: Product.rb ...
-2
votes
1answer
77 views

Using a single controller in a YII Form [closed]

I recently developed the relevant forms after designing the database by using the GII tool of the yii framework. However one of my colleagues tells me that I should not use a separate controller for ...
1
vote
1answer
370 views

How to connect two tables with one form in Yii

I recently was introduced into the Yii Framework and am presently developing a web application system for my company. However I noticed that when creating the model in order to give the connection to ...
2
votes
2answers
61 views

Design my Entity so that I can use an Entity Field for a specific use case

I've a Candidate entity which have an $xmlContent attribute, This attribute is used to get some references to other Entities (Country, Citizenship, ...), the $xmlContent value contain the Ids of these ...
0
votes
1answer
88 views

cakephp - form for belongsTo Model

I createt the following model to link 2 relational tables: class Ficha extends AppModel { //public $useTable = 'ficha_seg'; var $primaryKey = 'id_ficha'; var $name = 'Ficha'; ...
2
votes
1answer
159 views

Creating a dynamic form_tag inside an each loop

I have a model called assignment that has_many :questions models, which in turn belongs_to assigntment. Questions have a string field called content. In the show.html.erb for my assignment I have a ...
2
votes
2answers
85 views

How to save a field after commit=False with model Form in Django?

I have a model: class Book(models.Model): name = models.CharField(max_length=100) alias = models.CharField(max_length=100) description = models.TextField() def __unicode__(self): ...
0
votes
0answers
48 views

Save checkbox selections as a string in a django model charfield

I've got a set of check boxes which represent each day of the week. I want that to be stored in the database as a 7 character string like 'NYNYYNN' where Y represents a selected box for that day of ...
0
votes
2answers
117 views

How to define form select values via model in Rails?

I created a simple model called Categories, which is connected to Platforms model. class Platform < ActiveRecord::Base attr_accessible :name, :url, :country, :categories belongs_to ...
1
vote
1answer
119 views

Rails Puzzle: Check if a nested value exists, if it does don't save it but save the child values

I have a challenge that I have been struggling to tackle for the last few hours. I have a form with nested attributes. Each Post has and belongs to many Locations. I need each Location to be unique ...
0
votes
1answer
2k views

Yii - multiple records in one form submission

Does anyone know how to add multiple records using just one form in Yii? All the records belong to the same model and are of the same format. Many thanks, Nick
0
votes
1answer
55 views

Django, define field to be hidden in every form

I have an abstract model NamedEntry. It has a field body_raw which contains the text as it was input by the user. The body field contains the converted (from markdown to html) cache for the body_raw ...
2
votes
6answers
2k views

Struts 2: updating a list of objects from a form with model driven architecture

I already searched and found several approaches here, but I can't get them working for my project. I want to show an edit page for a list of objects, which should all be updated at once. I use the ...
2
votes
1answer
473 views

Manipulating form input values after submission causes multiple instances

I'm building a form with Yii that updates two models at once. The form takes the inputs for each model as $modelA and $modelB and then handles them separately as described here ...
1
vote
1answer
383 views

How do I use bean validation effectively in Play Framework 2.0

Using Play Framework 2, I'm trying to get "required" validation working, with a custom message using this example code: A simple Student model: @Id private Long id; ...
3
votes
1answer
308 views

CakePHP: Get data from a Form in the beforeSave method of a Model

I already created a register form. I have 3 select-boxes. Day, Month, Year. In my database i have one column called "Birthday" with the format of "date". Now i want to put all three together and ...
0
votes
2answers
98 views

Django Form with pre loaded model data

I Have one big form to handle with django. My model is as below class MerchantContact(models.Model): merchant = models.OneToOneField(MerchantProfile, related_name="merchant_contact") ...
0
votes
2answers
113 views

Difference between Model and Form validation

I'm currently working on a model that has been already built and i need to add some validation managment. (accessing to two fields and checking data, nothing too dramatic) I was wondering about the ...
2
votes
1answer
38 views

How to access id in modelform validation?

I have a model and a form created with ModelForm. I am using custom validation and I need access to the id of the record I am currently editing. Is there a way to transfer a variable to the form by ...
-1
votes
1answer
131 views

How can I render a list of checkboxes with checkboxes with django?

I want to create this form with django; [ ] parent_checkbox1 [ ] sub_cb1_pcb1 [ ] sub_cb2_pcb1 ... [ ] parent_checkbox10 [ ] sub_cb1_pcb10 [ ] sub_cb2_pcb10 I can render the parent ...
1
vote
4answers
1k views

OpenERP modeling / views: related object inline

I have installed the built in OpenERP 6.1 module crm. As a result, I now have res.lead active and visible at "Sales->Opportunities". I'd like to edit this object / view to show the partner's billing ...
0
votes
1answer
300 views

Yii: Avoid duplicating all properties from model in the form object

So I have a model like this: class MyClass { public $customer = null; public $address = null; } And a form like this: class MyForm extends CFormModel { public $customer = null; ...
1
vote
1answer
394 views

Rails Simple Form custom association select field

I have a select field and I want to put a custom attribute at it called name, I tried to do it like that: <%= f.association :in_charge, :collection => User.lawyer.map{ |l| [l.name, l.id, ...
3
votes
1answer
1k views

How to pass a model containing an IEnumerable model (complex) into a controller from a view C# MVC3?

I have had a look through other questions and answers on this site but cannot find the answer I need. I have a StudentRecord entity: public class StudentRecord : Persistent { public virtual ...
0
votes
1answer
114 views

Django Forms from Models

I am trying to integrate an app called Django-Classifieds, but am having trouble figuring out how to manipulate some of the elements. The app allows one to create a category and subfields through the ...
0
votes
2answers
104 views

Why isn't my rails controller/form persisting any data to my local database?

I'm new to Ruby on Rails, and as my first project I'm creating a beta sign-up page for my startup. I just want to save the users email address to a database for future use, and I am not able to ...
0
votes
1answer
52 views

Rails form to database setup

I'm fairly new to Rails, and I have a few beginner's questions. I want to create a beta signup page for my web app, something like this http://www.realestapp.com/ . How do I go about initializing such ...
0
votes
2answers
231 views

Create 2 Models at the same time

Ok I've searched far and wide and can't find a solution that I can get working...so I decided to post here. I have 2 models Store class Store < ActiveRecord::Base attr_accessible :storeimage, ...
0
votes
1answer
106 views

Error on submiting form MVC3 .Net

Hi there I have an error when I submit the following form: <div id="tabs"> <ul> <li><a href="@Url.Action("MainDetails", "ProjectDetails")">Project ...
0
votes
1answer
412 views

how to handle imagefield update in django form

I have following models for category class Category(models.Model): name = models.CharField(max_length=30) is_active=models.BooleanField() photo=models.ImageField(upload_to='category') def ...
0
votes
2answers
550 views

Symfony2: Best practise for large forms

I going to set up some large forms with up to 100 fields. Now my question is if there is some best practise about handling such forms. Especially: Entity relations Form object it self Does ...
0
votes
2answers
1k views

Custom form element name attributes on CForm Yii Framework

I am using CModel (Gii specifically) to generate forms for my Yii application. I have a problem with how it names the name="" attributes of my form elements. They look exactly like my table fields on ...
0
votes
1answer
65 views

Get rid of the label in a ModelForm?

So I'm trying to have field in my model for that are hidden but contain default values and can't be changed thus being hidden(are there more secure ways of having default fields that will always be a ...

1 2 3