Model–View–Controller (MVC) is an architectural pattern used in software engineering. For Microsoft ASP.NET MVC-related questions, use the more specific [asp.net-mvc] tag instead, if applicable.
0
votes
0answers
2 views
Backbone.js and server side views
Ive been using MVC frameworks for a while now, and have been through Cake, Codeignitor and have now settled on Laravel (thanks to Jeffrey Way over at nettuts). I heard great things about Backbone so I ...
0
votes
0answers
6 views
None of the SVG on Azure remedies have worked for me
The approach outlined in these posts has not worked for me:
-Use SVG in Windows Azure Websites: (Use SVG in Windows Azure Websites)
-The Usual HTML 5 Media Types: ...
0
votes
0answers
18 views
To create textboxes in cshtml for List<string> in my model
am really new to MVC, i was web form developer but i happened to get involved in a project developed using MVC.
My view looks like this, 5 textboxes to enter values (stored as a List), when added ...
0
votes
0answers
3 views
Sencha Touch Store Add replaces record 1
I extended an Ext.data.Store (i.e users with model user) but when I iterate over custom JSON response and add each record, it replaces the first record and so the store consist of just one record ...
0
votes
0answers
12 views
MVC RadioButtonFor default checked when enum but not for int in viewmodel
Noticed a new thing today while trying to solve a problem that I have.
ViewModel:
[Required]
public PaymentOption PaymentOption { get; set; }
Enum:
public enum PaymentOption
{
CreditCard,
...
0
votes
2answers
25 views
Redirect to a view
I am new to Mvc. I need to do a redirection to a view. I have a views folder then within it a Rentals folder then inside the Rentals folder is my DisplayInvoiceList.cshtml which I want to display. How ...
0
votes
1answer
37 views
Is it possible to have multiple MVC routes point to the same controller/view?
(disclaimer: new to MVC)
I am trying to setup a website product listing with categories that lets the user request pages both by productfolder/productname and by productfolder/category/productname. ...
1
vote
0answers
12 views
DateTimePicker plugin only works once on dynamically created pages. MVC4 Razor
I have a calendar and when a user clicks on a date I'm using AJAX to get the 'create.cshtml' page. On that page I have the standard html helpers:
<div class="row">
...
0
votes
0answers
6 views
Kendo MVC grid rebind returns a empty grid [on hold]
I am trying to rebing a Kendo MVC grid on checkbox click, it return the result, but the grid is empty.
0
votes
0answers
10 views
RazorPDF save pdf file to server directory in MVC4
I am currently assembling and displaying a PDF using RazorPDF in MVC4 and would like to save the PDF file to the file system at the same time I return the view.
The following line of code in the ...
2
votes
2answers
17 views
How does exporting the express instance work
I've came across code that goes like this
express = require('express');
app = express();
app.use(require('./lib/file.js'));
app.listen(80);
with file.js containing
express = require('express');
...
0
votes
1answer
24 views
Model binding issues with Kendo objects with complex child properties
I have a Kendo UI grid which allows me to post multiple changes to the server. The model that is bound to the grid contains a list of a complex type. Here it is (simplified):
public class User
{
...
0
votes
0answers
5 views
Java onclick event to a specific joomla component controller
i am currently making a custom backend component for joomla 3.1.
for this i need to have a file upload funtion.
i was wondering how i can call a controller function using a java onclick event in ...
0
votes
0answers
5 views
Database table inheritance in model classes + PHP?
I have two tables called user and employer. Employer will inherit all the fields included in the User table and it will have two new fields called emp_id and emp_designation. According to the ...
0
votes
0answers
10 views
DevExpress CallbackPanel PerformCallback hangs when content includes PageControl or TabControl
I would like to refresh the tabs in my TabControl on demand, when a separate client action occurs on the page. I have placed my TabControl extension (tried PageControl also) within a CallbackPanel, ...