0
votes
1answer
12 views

Editing multiple records in one form - Rails

I'm trying to edit multiple records using one form, so the user can edit a few records then press submit at the end rather than after each individual one. I've posted my current code, and I get this ...
0
votes
1answer
52 views

Rails Form Image_Tag VS File_Field_tag

I'm making a profile picture the user can either get it from Linkedin or upload it's own. When the user get's it from LinkedIn it's shown via an image_tag: image_tag(Base64::decode64(field_value), ...
0
votes
0answers
41 views

Display content of a java.util.Map in JSP form, while using spring MVC

I have a object-String pair in the Map collection. I need to display object values as well as String on the table in the JSP along with radio button selection. How do I do this, as per my knowledge ...
0
votes
3answers
19 views

Create a new record that has a belongs_to relationship, passing the ID of the model it belongs to

I'm trying to create a new contact object from an account object's "show" page. I know the below codes isn't correct. If I'm on the "show" page of the account how do I pass that accounts ID to the New ...
0
votes
2answers
82 views

insert an object to database with a controller and validator using Spring MVC 3

I'm trying to insert objects type "User" to the database but i get this error : org.apache.jasper.JasperException: An exception occurred processing JSP page /WEB-INF/pages/gestionUser.jsp at line ...
0
votes
1answer
37 views

MVC How To Pass Url Values as Well as a Model From Action to a View

I am looking for a way to preserve a url parameter after posting through a form. For example my GET method takes a string "type" and uses that to determine the type of report to render in the View. ...
0
votes
0answers
49 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
31 views

How to populate form helper select with array?

I have the following array data that is being fetched from a table that isn't mine. Array ( [0] => Array ( [sys_sbu] => Array ( ...
1
vote
2answers
64 views

Spring MVC — nothing happening on submit

I have the following form in my Spring 3.2 MVC application. The controller method is not being called. Here is my form. <form:form commandName="bulletin" method="post" ...
0
votes
0answers
157 views

I want to get the form data set in a pojo in my controller using spring 3, as like struts1.2 approach

I have login.jsp as my welcome page/home page. Like struts1.2 approach I want data from my login.jsp(username and password) to be set in a pojo(LoginForm) and I need to access username and password ...
0
votes
0answers
105 views

ZF2 run command to create controllers, actions, forms,

I'm trying to make the switch from Zend Framework 1.12 to 2.1.4 and I'm having a hard time with it. I code in Netbeans IDE and am used to 'Run Zend Command' (by clicking with the right mouse button on ...
0
votes
0answers
113 views

Data transfer from GSP to controller without form in grails

I want to send my user's user_id from my GSP to controller without using form or <g:link> tab rest, Also tell me how to send multiple data from <g:link> tab.
0
votes
1answer
63 views

Rails - creating new instances of other classes when new user created

I am trying to have it so that when a new user is created in the app, everything is already set up for them. E.g. they have a folder, which they save notes in to. So, rather than having to click on a ...
0
votes
2answers
70 views

emberjs rails submitting in controller without model

I'm am brand new to emberjs (1.0.0-RC1) which I'm using on top of rails. I want to submit a form for a session without using an ember model. I feel this is better because there is not real session ...
0
votes
0answers
131 views

CodeIgniter Form Validation Callback Function Visible to Router

Can anyone tell me if there is a way to callback with the form_validation library in CodeIgniter to a utility function of a controller? I have a function called check_database that is a callback ...
1
vote
1answer
55 views

Issue while creating posts in database

I have a form from which a project is created. The form collects data for two tables; 'projects' and 'projects_users'. The last one is a relational tabel which is used for storing which users that are ...
0
votes
1answer
99 views

Rails: DropDown Selection to Controller Action

Good Day, i have this form view/startseites/index.html.erb and i specified a methode in my people_controller, she doesnt go. I prepared some ghost code for understanding. I want to give the entries ...
1
vote
3answers
187 views

No route matches {:action=>“show”, :controller=>“users”}

I'm trying to implement a Twitter Boostrap login form, that's gonna be used on every page (because the navigation bar is a part of the layout). However, when trying the code below I get the following ...
0
votes
2answers
105 views

In Rails 3, when a resource create action fails and calls render :new, why must the URL change to the resource's index url?

I have a resource called Books. It's listed as a resource properly in my routes file. I have a new action, which gives the new view the standard: @book = Book.new On the model, there are some ...
0
votes
1answer
82 views

MVC 404 Errors - Still New

So, I'm getting a 404 error on my current MVC project on submit. I'm new to MVC, so I'm likely doing something exceptionally stupid. Here's the relevant code... <%@ Page Title="Pies" Language="C#" ...
0
votes
1answer
62 views

When the form throws validation messages to the user, the drop-down nav breaks on the site

RESOLVED: In the contact controller i had function index with the page location then a separate one called function send_mail. I removed the send_mail function and moved the code up to the index ...
1
vote
1answer
46 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 < ...
1
vote
4answers
2k views

MVC: Submitting form and pass data to controller method of type FileStreamResult

I have an mvc form (made from a model) which when submitted, I want to get a parameter I have the code to set the form and get the parameter using (@Html.BeginForm("myMethod", "Home", FormMethod.Get, ...
1
vote
0answers
119 views

Multiple instances of one form_for on a single page? Rails

Thank you in advance, I have a simple Document model and form_for to create a new document. All I would like to do is have multiple - say 3 - forms on one page which will create three separate ...
0
votes
2answers
200 views

Submitting a form view to controller

I have a form in my form view defined as using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" })) This form contins a number of input of type button and ...
1
vote
0answers
296 views

How To Pass Dropdown Values As Command Object And Upload To DB using Spring Framework

new to Spring here. I have a scheduleLoad.jsp (below) that is to take user's dropdown list input and pass it to a confirmLoad.jsp screen and update the database. Select Year:<form method="post" ...
1
vote
0answers
70 views

Rails: JSON params are nil when HTML are fine

I've just started to work with Rails. I've controller with login code: class SessionsController < ApplicationController def login_attempt authorized_user = ...
1
vote
1answer
45 views

Wrong value from a form in a controller

This a dumb question but even after some research i can't fix this problem. I have a form in one of my view that allow me to get a value from a visitor. I'm trying to get that value submitted in the ...
0
votes
0answers
89 views

Collection_Select, what do I need to change in my create controller?

I created 2 models: class Fixture < ActiveRecord::Base attr_accessible :away_score, :away_team_id, :home_score, :home_team_id, :result, :week belongs_to :home_team, :class_name => Team ...
-2
votes
1answer
78 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 ...
0
votes
2answers
54 views

What is the Rails convention for sending form data to a URL dependent on form value?

I would like a form submitted at the url /index/fruit to submit the form data to /index/:identifier where :identifier is determined by a value of the form What is the rails convention in this ...
0
votes
1answer
62 views

Zend - Accessing datas from form from another controller by a view helper

after some questions about how to resolve one of my problem (http://stackoverflow.com/questions/13609611/using-several-modules-in-the-same-view) I have another one. I made a form in a view helper ...
3
votes
2answers
213 views

Magento - Best way to handle forms in blocks?

I'm coming from different MVC frameworks (e.g. Symfony) to Magento. I read a lot about Magento best practices and I can see Magento doesn't use the typical MVC style. Alan Storm wrote the followings: ...
1
vote
1answer
49 views

C# how to show a login form correctly

I have a bit of trouble with my design of a main class. In my main c# class I start a login form where the user has to enter his credentials against the database. public static void StartPlugin() ...
0
votes
1answer
231 views

Rails: Edit/Update Record, populate text fields with current record field entries

I have a program that stores details of sauces. Basically when I get to the edit form, im doing everything im supposed to be doing, the id is passed through successfully, however all the form fields ...
0
votes
2answers
84 views

Rails Acts As Messageable setting up Form

I'm trying to use acts as message able gem and I'm following their example controller SOLVED See Answer I keep getting this error undefined method `send_message' for nil:NilClass when trying to send ...
2
votes
2answers
455 views

No valid form to update in symfony - controller

So first of all i am using FOSUserBundle in Symfony2.1 and that stores my roles as an longtext in the usertable: a:1:{i:0;s:14:"ROLE_SUPERUSER";} I am able to retrieve the data and send it to a ...
1
vote
1answer
102 views

ASP.Net MVC - What is the recommended way to retain form values across different controllers?

Let's say I have a HomeController which has an Index action, in the Index.cshtml View I will be posting back to an action in another controller (DocumentsController), after the action is completed I ...
0
votes
1answer
185 views

Form upload “undefined method `[]' for nil:NilClass”

Delving into Rails' upload functionality and actually following this railsguide. I use the following code for the upload form: <%= form_tag({ action: :upload }, multipart: true) do %> ...
0
votes
2answers
235 views

Magento post from controller

Lately I've been using cURL to post data back from a custom Magento controller to a custom page on the same website. However, the way I do it somehow breaks Magento's log in data. So I've tried ...
0
votes
2answers
84 views

How do I populate an object in a command object?

I'm using Spring 3.1.1.RELEASE. I have this command object … @Entity public class Contract { @Id @Column(name = "ID") @GeneratedValue(strategy=GenerationType.AUTO) ...
0
votes
1answer
140 views

Form type not found by Symfony - What did I miss?

Here is the error I get : Fatal error: Class 'bnd\myBundle\Controller\pageApproachUpdateType' not found in C:\wamp\www\Symfony\src\bnd\myBundle\Controller\NTController.php on line 208 As if Symfony ...
0
votes
3answers
866 views

How do I create a custom form and controller in Spring Roo?

I've been looking into this all day now, and I can't say I've quite understood how to go about this. So far I've created a Spring Roo project along with a bunch of entities. What I want to do is ...
0
votes
1answer
50 views

Do I need a model or controller for a join table?

I am having trouble with my first join-table for a many to many relationship. class Category < ActiveRecord::Base has_and_belongs_to_many :users end class User < ActiveRecord::Base ...
0
votes
2answers
156 views

How to pass data from a form to controller using ASP.NET MVC

I have a form defined thus in a razor file. @using (Html.BeginForm()) { } Within this form I have fields such as <input type="text" readonly="readonly" name="MaxBudget" value="Any" ...
3
votes
2answers
458 views

Rails 3, large multi-step form: 1 large controller or separated by resource?

I have a multi-step form where the user fills out info on several different pages. In conventional rails, you keep each resource separate in its own controller and you use the REST actions to ...
1
vote
1answer
75 views

How to pass in a form param from a Rails controller in RSpec?

I'm trying to write a spec for one of my Rails 3 controllers. The path I'm trying to hit is: GET /:user_id/photos/shared_photos?page=:page That :page param is usually instantiated through an AJAX ...
2
votes
2answers
214 views

Jump to error after form post mvc3 .net

I have a list of data that prints to the screen. At the bottom of the screen (with scrolling), I have a form with a text field that the user can enter data in. When they click submit and the form is ...
0
votes
1answer
42 views

Getting a Controller, Route and Hidden-Field-Button to work correctly in Rails

I would like to create a button so that a user can enroll in a course. The enrolling model belongs_to users and courses and should keep track of enrollment. I have the following code displayed as a ...
0
votes
1answer
127 views

How does Spring MVC controllers perform method resolution when a form is submitted?

I have a Spring MVC form in jsp and I am having trouble getting the controller method invoked. Can someone please explain to me the mechanism whereby Spring MVC performs controller method execution?

1 2 3