Tagged Questions
1
vote
2answers
67 views
MVC - How to pass data from view to controller
I'm learning the MVC pattern right now and I have a short question concerning models and view. I have the following model:
class Person {
private String name;
private int age;
}
Now I want my ...
0
votes
4answers
58 views
How to use Model data in a view ASP MVC?
I'm a beginner with ASP MVC and I'm trying to show data from a model in a view.
This is how I display the data :
@Html.DisplayFor(modelItem => item.Budget_Year)
But I don't know how to use this ...
0
votes
0answers
10 views
Entity Framework One 'Create' view for multiple models
Here is my 'Mentees' model:
{
namespace BEMentoring.Models
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using ...
0
votes
1answer
22 views
Creating two models in one form
This is a sample of my code:
<%= form_for [@facility, @owner],:html => {:multipart => true} do |f| %>
<%= render 'shared/error_messages_doc' %>
<table>
...
0
votes
0answers
60 views
DropDown list issue in knockout js asp.net mvc 3
I have the following problem. I'm developing web application on asp.net mvc and using KnockoutJS in one of views. I have the following viewmodel
public class ExampleViewModel
{
public ...
0
votes
1answer
33 views
Codeigniter controllers for subpages? (New to Codeigniter please help)
I am new to codeigniter so please excuse my stupidity.
I am building a client portal and I have my admin / client login setup I am currently working on the admin area first so I have my controller ...
1
vote
2answers
45 views
How to retrieve model associated to view when click event happens
I've got the following template
{{#each photo in photos}}
{{#view App.PhotoView}}
<img {{bindAttr src="photo.cover_image_source" data-photo-id="photo.id"}} />
{{/view}}
...
0
votes
1answer
40 views
Rails: view based on a different model-controller
I am using two different models&controllers - say products and checkout, but I want the checkout to be ordered by the product number. (Meaning checkout for product number 5, checkout for product ...
0
votes
1answer
19 views
Rails: call a parent model 's attribute in View?
here i have 2 simple model with one-many relation:
class Category < ActiveRecord::Base
attr_accessible :Name
has_many :items
class Item < ActiveRecord::Base
attr_accessible :Category_id, ...
0
votes
1answer
37 views
Render backbone models from collection sequentially on click
I have pulled down a collection of models from the server like so:
I only want to render the first model in the view, and then when the user clicks a button in the rendered view we render the next ...
0
votes
1answer
67 views
Highlight/select first visible item in QListView when filtering with QSortFilterProxyModel
If a list selection does not exist for filtered results then I would like to automatically highlight the first item. I created the method force_selection() that highlight's the first item if nothing ...
0
votes
1answer
88 views
.NET Razor Model Null
I'm working with the .NET framework using MVC 4. I have a controller:
using DataProvider.Queries;
using DataProvider.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using ...
0
votes
1answer
33 views
Is there a fix for passing string as a model to an MVC view
I'm using the MVC 4.0 and ran into a case where I cannot get to the correct view due to my model being a string object.
The following attempts have all failed the same way, that is the browser tries ...
0
votes
0answers
20 views
How return the value of File upload to modified into the View
My question is really simple...
On a HttpPost controller with HttpPostedFileBase parameter, how can we return the model so the
Html.TextBoxFor(m => m.File, new { @type = "file" })
can remember ...
0
votes
0answers
69 views
When I click {{#linkTo}} and set the object in ember.js
App = Ember.Application.create({
currentProject: 21
});
The App.currentProject default is 21, and when I click the {{#linkTo}}, I want to set the :project_id in the App.currentProject .
...
0
votes
0answers
56 views
Passing values into a strongly typed MVC 2 view?
all.
I am relatively new to Microsoft's new implementation of Model View Controller. I'm creating an app in MVC 2.
I have a strongly typed view called "CreateAlbum" that's tied to a model class ...
0
votes
0answers
18 views
Access Model Information in Multiple Views MVC 4
In my program, I have a view with a Kendo UI Grid that gives a list of processes running.
When I select a grid row, I have a Kendo Window that displays a small amount of information on the process and ...
0
votes
0answers
29 views
Observer for impementing model - view syncronisation
I have problem impementing GUI for the following case:
Assume I have a scrollbar and a 2 edittext(input box) and following code:
public class Model {
private int mData;
// methods for ...
0
votes
1answer
30 views
Error Message in Strongly Typed View - What is the “dictionary”?
Here is a sample of an error message when the wrong type is passed into a strongly typed view:
The model item passed into the dictionary is of type 'foo', but this dictionary requires a model item of ...
1
vote
0answers
37 views
Sending a model for use throughout all views linked from a layout
I am working on a web service built on ASP.NET MVC 4 and have run into some trouble figuring out how to manage a model after log in so that it is widely available to all action functions created in ...
0
votes
1answer
64 views
How to synchronize Model and View Model bidirectional in MVVM?
It's a simple question and I searched the Internet for hours without success...
I have a model and a view model with one property. To make this property viewable in the view, I use a ...
0
votes
1answer
20 views
Events: Modify value on Form 1 -> set Global Variable and raise event -> update value on Form 2
I'm spinning my wheels with what I think is a basic concept: receiving a 'data changed' notification from a GlobalData class.
I have Form1 with a single control on it (textBox1) which, when the ...
1
vote
1answer
97 views
MVC logic for Android application
I would to write an Android application for detect object in a video frame obtained from an Parrot Ar Drone. I've choose to use an MVC pattern for this purpose, when the Model contains the drone ...
0
votes
1answer
72 views
Area of tree displayed by QTreeView not expands to its parent widget?
I use QTreeView and QStandardItemModel to display its contents (read from xml file) in a tree view. The file parser works just OK, but when I use the view to display the data, the sizePolicy just ...
1
vote
4answers
69 views
How do i call the function I created in my Model on the view
I just created this function in the model to see who im following in my social network... how do i call it in the view??
function isfollowing($following){
$user_id = ...
0
votes
1answer
55 views
CodeIgniter loading from multiple controllers and models
HI everyone I only recently started Using CodeIgniter I have a simple question is it normal to use multiple models and controllers for the same view ? What I want to do is to have a controller and a ...
0
votes
1answer
47 views
How to pass a list and a string to one view from two actions of one controller? How to get this data separately in view file?
Please see this code of index.cshtml below:-
List is displayed like below & The string is the Caption, for which i send the company ID to Controller
@model MvcApplication3.Models.Company
...
0
votes
2answers
66 views
Please name some tutorial for MVC3 , which shows data transferring from Controller to View
Iam just a beginner in MVC , and i have doubts like , how to pass data from two ActionResults to the same view...
and then at view how to get these two values returned from the controller...
So far, ...
0
votes
1answer
76 views
keeping all UI logic out of ViewModel?
I am quite new to MVVM and i'm curious as to of it's possible to keep all UI specific things out of the ViewModel and therefore making my viewmodel portable across projects? For example, say i want ...
1
vote
1answer
65 views
model and collection to one view in Backbone
Being new to Backbone.js, I want to ask one general and simple question. In my app I need to create a new view with giving a collection and a model in it.
var myView = new SomeView({
model: ...
0
votes
1answer
63 views
Models and database views in django
I'm setting up django models for a database, and currently my approach is to directly map database tables to Models. However, in some cases I actually need to work with a relatively complicated ...
1
vote
1answer
75 views
knockout view model wrapped in observable
To avoid calling applyBindings multiple times on the same DOM element, I wrap my various viewmodels in an observable. then just change that observable to whatever view model i wanna see and BAM...that ...
-1
votes
2answers
58 views
CakePHP not checking form validation
I'm writing a contact form and want to add some simple validation routines. The action for this page looks like this:
public function contact() {
$this->loadModel('Contact');
...
1
vote
1answer
103 views
How does the model update the view in MVC pattern?
I have a confusion about the structure of MVC pattern.
In some places while searching on google I found that the model updates all those views which are subscribed to that model. How the model ...
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
101 views
Searching for Java MVC Tutorial with more than 1 View
Hello i am searching for a Java MVC Tutorial with more than 1 View. So that there is a navigation to a different View when the user, for example, click on a button.
Java with MVC for 1 View is totaly ...
0
votes
0answers
25 views
MVC 4 handling Dictionay types into a view
I am trying to get a dictionary type into a View with MVC...
I call the data from the database...
public ActionResult Index() {
using (var context = new databaseContext()) {
var query = from ...
1
vote
1answer
54 views
MVVM Referencing Assemblies
I am implementing the MVVM pattern in the application I'm working on, and I have 3 seperated assemblies in my solution, the Model, View, and ViewModel. The ViewModel has a reference to the Model, and ...
0
votes
2answers
227 views
Joomla Component data from model to view
I am creating a component in Joomla for the first time, now i am having a hard time calling data from my model in to my view. I did this as follows:
//In my model
class InternetModelDefault ...
0
votes
1answer
91 views
How to bind DbContext from Model to View
I'm new to MVC and have this simple Problem (I think).
I have a DbContext
public class UsersContext : DbContext
{
public UsersContext() : base("Share_DB") {}
public DbSet<ItemDB> Items ...
1
vote
1answer
324 views
mvc4 model is null when RedirectToAction calls view
I will start by saying I am new to MVC4... so be gentle
I have a model
public class LoginModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
...
1
vote
2answers
91 views
MVC: How to properly create a view for an unknown model
Suppose I have a superclass, Model. Suppose also I have two subclasses, NumberModel and StringModel, one which stores a number and the other stores a string. To implement the MVC scheme, I make two ...
0
votes
2answers
149 views
Use model of different project in the same solution
This might be a respeat of the question posted here but I did not find any working answer.
Say I have project1 which uses the model model1. I create a new project, project2, in the same solution and ...
1
vote
2answers
44 views
How to retrieve items from a django queryset?
I'm trying to get the video element in a queryset but am having trouble retrieving it.
user_channel = Everything.objects.filter(profile = request.user, playlist = 'Channel')
print user_channel[0] ...
1
vote
1answer
53 views
A model defined in a view?
I'm working on a website which will be used all over the world and has to be highly disponible at anytime anywhere on the planet. That's why I try to use all the possible tricks to reduce at maximum ...
0
votes
3answers
273 views
MVC3 using Drop Down List model and other models in the same view
I am using this example to develop a dropdownlist. It works well until I make some changes in the way my model is called within my view. The dropdownlist model class is called dropdownModel. Because ...
1
vote
1answer
68 views
Why is MyModel::data() not being called (subclassing QSqlQueryModel)
Hi I can't figure out why my data() function is never called when populating QTableView
I subclassed QSqlQueryModel. The header is like:
class TicketModel : public QSqlQueryModel
{
Q_OBJECT
...
1
vote
1answer
152 views
Edit View Model Binding with HttpPostedFile
I have a ViewModel:
public HttpPostedFileBase File { get; set; }
public string Notes { get; set; }
In the Create view, I have an <input type="file" name="file" /> that binds the ...
0
votes
1answer
42 views
I need to get data to my view
I have a view in my mvc intranet to create processes.
In that view, I have a table that needs to be populated with data.
This is my view
@model TestingTool.ViewModels.ProcessModel
@{
...
1
vote
1answer
130 views
MVC3 View with multiple models
I have a model for a view. This view contains a an @Html.DropDownList whose values are in a model. How can I have my view take both model for different parts of the program?
For example, I have
...





