The asp.net-mvc-viewmodel tag has no wiki summary.
0
votes
0answers
43 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
0answers
41 views
ASP.NET MVC ViewModel is null on Post Back - sometimes
depending on my input in an HTML form (6 or 6.5 - or in general, integer VS float) I get or don't get the following exception (it works with int and doesn't work with float):
The model item passed ...
0
votes
1answer
51 views
Can a 'ViewModel' hold 'DomainModel' type property
In asp.net MVC 4, I have 2 DomainModels
Product
Order
and a related ViewModel
OrderDetailsViewModel
In my "OrderDetailsViewModelMapper" mapper file I am manually mapping ...
-1
votes
2answers
35 views
Object reference not set to an instance of an object in view model
I get this error:
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for ...
0
votes
2answers
48 views
MVC ASP.NET No parameterless constructor defined for this object
When I click submit in order to create an account the following error is displayed. I can't find why it is giving the following error. Also I tried to use breakpoints and debugging but it was useless
...
2
votes
1answer
58 views
Update content depending on string in view model
I am running an MVC application, which have a view model like this:
public class UserListViewModel
{
public UserListViewModel()
{
Users = new List<UserViewModel>();
...
0
votes
0answers
55 views
How do you bind a nested viewmodel list with a custom modelbinder?
I'm trying to bind a viewmodel with a dynamic list of nested viewmodels. I figured out on how to bind 1 viewmodel that is nested. But how do I bind a list of them?
My classes:
public class ...
0
votes
1answer
98 views
Interface for ViewModel Builders in MVC
I've been trying to make up my mind on how to deal with ViewModels in my MVC solution. I think, after reading different posts and blogs, that the best approach is having builders that implement an ...
3
votes
2answers
79 views
Decoration on ViewModel property to use a different name for binding
On MVC3, is there a way to decorate a ViewModel property in order to get the DefaultModelBinder to use a different name for it in the request?
For example, suppose you have the following view model:
...
0
votes
2answers
40 views
Why should i use ViewModel suffix instead of VM?
This maybe a stupid question but ...
I see that the standard convention is to use the "ViewModel" suffix.
Could I use the VM suffix?
Why such a long suffix?
0
votes
1answer
36 views
MVC3—Trouble binding complex model
I need to update a company class with an IList of addresses. These are my Data Models.
// Entity class Company — managed by Nhibernate
public class Company
{
public virtual IList<Address> ...
0
votes
0answers
71 views
MVC 4 ViewModel LINQ
I'm new to MVC 4/EF/LINQ. The primary issue concerning the data is that a person over time can have multiple last, first and middle names. So, for instance, the last name entity has a foreign key ...
0
votes
1answer
53 views
Reuse DisplayAttributes with view model properties
Is there a way to use the DisplayAttribute values of an entity within a view model?
public partial class Catalog
{
[Display(ResourceType = typeof(Resources), Name = "ID")]
public string ID { get; ...
0
votes
2answers
34 views
How do I only update properties on the original (DB) object that have been changed in the view model?
For example, I have a DateCreated property on my Product and ProductDetailModel classes. Yet, on my Edit view, I have no DateCreated input, or any kind of storage. When I edit a product with a ...
1
vote
3answers
446 views
ViewModels with asp.net mvc 4 and EntityFramework whats the Point
I'm debating with myself whats the point in creating ViewModel classes in a project which uses Entity Framework?
I currently have a project which uses EntityFramework. My solution is structured ...
0
votes
0answers
52 views
using viewmodel and saving the data to respective tables
Im new to asp.net mvc. I've created the following models :
public class Unit
{
public int UnitId { get; set; }
public string Name { get; set; }
public string Alias { get; set; }
}
public ...
0
votes
4answers
68 views
MVC viewmodel redundancy
Wouldn't creating ViewModels lead to redundancy? In the sense I have my domain model and I need to display the data from it on a view. So we create ViewModels, add DataAnnotations to it and display it ...
0
votes
1answer
145 views
MVC validation lost in Knockoutjs post
I'm using MVC4 and knockout. I have a form on a page that is strongly typed to a viewmodel. In that viewmodel I have some validation defined, for instance:
[Required(ErrorMessage = "Title is ...
1
vote
1answer
479 views
Knockout view model posts back to ASP.NET MVC partially - how to post back complete object?
Having these ASP.NET MVC view models:
public class User
{
public string Name { get; set; }
public LabeledEmail LabeledEmail { get; set; }
}
public class LabeledEmail
{
public ...
0
votes
1answer
292 views
ASP.NET with Knockout variable length list with combobox - how to bind?
With the following ASP.NET models
public class User
{
public string Name { get; set; }
public LEmail LEmail { get; set; }
}
public class LEmail
{
public IList<CLabel> Labels;
...
0
votes
1answer
95 views
MVC razor layout - modify from view
This is my layout page:
<!doctype html>
<html lang="en">
<head>
<meta charset='utf-8'>
<title>@ViewBag.Title</title>
</head>
<body>
...
1
vote
2answers
567 views
ASP.NET MVC View Model not binding on HTTP Post with DropDownList
I am having an issue that when I post to a controller I lose binding and everything in my view model is NULL. Here is the code I am using:
View:
@model ArticleCategoryVm
@using (@Html.BeginForm())
...
5
votes
2answers
587 views
ASP.NET MVC with nested view model and Knockout
Cannot get my brain around how to implement knockout for the following ASP.NET MVC 4 nested view model :
public class MyProfile
{
public string Name { get; set; }
public IList<VM1> List1 ...
2
votes
2answers
805 views
To insert Data into Multiple Tables using MVC ASP.NET
I am new to MVC ASP.NET. Although this might have been solved in the past but I still can't get a complete Solution to my problem.
Problem : I have two tables
Video
Columns are :
VideoID,
...
0
votes
3answers
67 views
Get route {id} value in view?
I known if I have something like /controller/action/{id} I can access id as a function parameter. But how would I access it via the view without using the viewbag?
0
votes
0answers
38 views
ViewModelHelper and ninject
I'm proberbly doing this all wrong so any help would be appreciated.
I trying to add the data from 3 classes and join the data together into 1 model to display on webpage.
I have tried with the code ...
0
votes
1answer
310 views
Multiple models in view error
I have a view pages that have different partial views with different models. I created a model class that will call other classes so i can use it on the main view page. But my problem is that when i ...
1
vote
2answers
105 views
Passing multiple view models in a single view
Even though that i believe that i have all the models defined and hopefully passed in properly but i am getting an error which states that i am passing in one model when it requires another model.
...
0
votes
0answers
257 views
Setting default values on ASP.NET MVC view model when form posted
Is it possible to set default values on a view model being passed to an action when a form is posted in MVC4?
What I mean is if no input is given for say a non required field on the view, can a ...
0
votes
0answers
163 views
Razor view page with multiple partial view razor pages
I am somewhat new to this and i am having trouble displaying a page which contains partial views and i want someone to look over my structure and maybe point out what i am doing wrong.
This is my ...
0
votes
0answers
121 views
Add multiple models Dynamically in a single view using viewmodel in MVC
I've created a view model as per my requirement in MVC using EF 4.x, as shown below :-
public class ClassSectionSubjectViewModel
{
public ClassTable ClassTable { get; set; }
public ...
0
votes
1answer
47 views
ViewModel nested reference: performance issue?
I've a doubt, I admit I'm a beginner in c# and software architecture.
I'm working on an ASP.NET MVC4 + EF5 and I'm trying to structure my app using a three tier architecture.
In my BL I created those ...
2
votes
2answers
326 views
Show multiple models in a single view using ViewModel in Razor MVC3 (with only Details in view)
My task is to show multiple models into a single view.I've created a ViewModel for my requirement but I'm not meeting my requirement.
please have a look into the below code and rectify me where m i ...
0
votes
1answer
175 views
ASP.NET MVC 3 + Serializing a collection displayed into <table>
My ViewModel contains a collection of some object (IEnumerable). The items of the collection are displayed on rows into a tag. When I submit my form, it's triggering submit jQuery function to ...
0
votes
0answers
22 views
Pass a list of viewmodels to create a table with data of the classes in the model
I have a VM with Message and Item. I would like to get a list with all data from items and the corresponding messages.
VIEWMODEL
public class MessageItemModel : Controller
{
public ...
0
votes
1answer
145 views
ASP.NET MVC 3 - Content loaded into ViewModel is lost after callback
I make a callback jQuery function to fill some collections into my ViewModel with values. When I call this function again, the ViewModel loses the content populated in the first callback.
// ...
2
votes
1answer
473 views
ASP.NET MVC - Getting selected value from a dropdown as a model
I would like to know if there is a way to popuplate a model from dropdownlist selection. For example:
My view is bound to the model Employee and the Employee class has a property 'Department' which ...
8
votes
2answers
200 views
How can I make the Required attribute for my custom DropDownList editor template operate client side?
I have an editor template for DropDownLists that is marked with an attribute like this:
[AttributeUsage(AttributeTargets.Property)]
public class DropDownListAttribute : UIHintAttribute
{
public ...
0
votes
3answers
299 views
Populating mvc4 viewmodel with multiple List<>
I have a list of 22 categories with about 8 menuItems per category, but my viewmodel ends up with only the last item in the list. I'm having a hard time seeing where the problem is.
At this point I'm ...
1
vote
2answers
78 views
aspmvc post datetime with json error
When i post a DateTime with Json i have the following error:
Error 500 Can't cast object of type "System.DateTime" to type "System.Array".
I don't understant why !
Can you help me please ?
the ...
0
votes
1answer
197 views
MVC two views in one model
I'm trying to combine two views in one model.
But I cannot get it too work!
Can you help me?
Models:
public class Player
{
public int playerID { get; set; }
[Required]
[Display(Name = ...
0
votes
1answer
433 views
ASP.NET MVC ViewModel Good Practices
First i want to share with you this very interesting article about ViewModel :
http://rachelappel.com/use-viewmodels-to-manage-data-amp-organize-code-in-asp.net-mvc-applications
I have one questions
...
7
votes
2answers
437 views
ASP.NET MVC 4 ViewModel With Child Interface
Is there a way to handle this without custom Model Binding?
public class MyViewModel {
public string UserId { get; set; }
public IJob Job { get; set; }
}
public interface IJob {
public long Id ...
0
votes
2answers
290 views
MVC ViewModel with editable and readonly data best practice
I'm wondering what is the best practice for dealing with editable/read only field in the same viewModel.
I'm facing this problem for a bigger ViewModel but let's assume I have a very simple ViewModel:
...
0
votes
2answers
40 views
How do I populate HTML content with new values once data has been changed on postback?
I have MVC3 razor application. Once I'm submitting a form and in Action i'm changing ViewModel content, i can't see new values populated.
There was a topic about that in MVC2 where guys told that it ...
1
vote
0answers
215 views
ASP.Net MVC File uploading ViewModel Binding
So I'm fairly new to ASP.net MVC and have been trying to make a fileuploader, but I can't seem to get my uploaded file bound to my viewmodel. I'm trying to apply validation to the uploaded file ...
0
votes
1answer
280 views
Why is my http post returning null from my view model
This is my model:
public class Attribute
{
public string Key { get; set; }
public string Value{ get; set; }
}
I fill it in my GET create
public ActionResult Create()
{
var ...
0
votes
2answers
67 views
How can you do multiple saves of a model in one submit?
I have a model:
public class CustomerAttributes
{
public Int Id { get; set; }
public string value { get; set; }
}
my create view looks like this:
<div class="editor-label">
...
2
votes
1answer
94 views
Expert opinion on lambda expressions - ViewModels
I'm fairly new to ASP.NET MVC and to lambda expressions, so I'm trying to figure out the best way to do this.
The situation: Clients have support tickets. I have a ViewModel that I just want to show ...
0
votes
1answer
104 views
validation failing on dropdown MVC
I am using code-first with EF. Validation seems to be failing on a dropdown list with the error System.NullReferenceException: Object reference not set to an instance of an object. This happens when I ...

