Hot answers tagged asp.net-mvc-2
1
It depends on the approach you wish to take, you could expose the model directly as a property of your view model to avoid violating the DRY principle. However, this would violate the Law of Demeter so you would have to balance this, as your views would now be more tightly coupled with your domain model.
Also, in terms of validation, if you expose the model ...
1
You have to map the default route last. Also you should create a constraint in the other route to not to block the default route.
routes.MapRoute(
"Default1",
"{controller}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new { id = @"\d+" });
//second segment has to be an integer, ...
1
u have to use ajax function for this:
$('youractionlinkid').click(function () {
var id = $('#yourdropdownid').val();
$.ajax({
url: this.href,
type: 'GET',
data: { id:id },
cache: false,
success: function (result) {
//do some action here
}
...
1
This might be useful to you.
http://www.dotnet-tricks.com/Tutorial/mvc/TbR0041112-Asp.net-MVC-Request-Life-Cycle.html
http://www.youtube.com/watch?v=aRZZFfKwVVU
1
Requests to an ASP.NET MVC-based Web application first pass through the UrlRoutingModule object, which is an HTTP module. This module parses the request and performs route selection. The UrlRoutingModule object selects the first route object that matches the current request. (A route object is a class that implements RouteBase, and is typically an instance ...
1
You can pass values with Html.ActionLink using routeValues in the parameter.
For example:
// VB
@Html.ActionLink("Link Text", "MyAction", New With {.eventId = 1})
// C#
@Html.ActionLink("Link Text", "MyAction", new {eventId = 1})
Might produce the link:
http://localhost/MyAction?eventId=1
1
The answer of your first question:
Need to get checked checkbox values to be saved in database
On a button click push all the values in a array and from there store them in a hidden field and when you post your form get those values from this hidden field:
<script type="text/javascript">
$(document).ready(function () {
...
1
As always you could start by writing a view model:
public class MyViewModel
{
public string SelectedValue { get; set; }
public IEnumerable<SelectListItem> Values { get; set; }
}
and then have your controller action populate this view model and pass it to the view:
[HttpGet]
public ActionResult GetDestinationList()
{
...
1
If dataUrl returns array of strings in JSON format you can use buildSelect to convert the data to <select> with the list of <option>. You can find the corresponding code example in the answer. Take in consideration the changes in jqGrid described in UPDATED 2 part of the referenced answer. So the
{
name: "Company",
stype: "select",
...
1
You have specified the following url for the dropdown:
dataUrl: '<%= Url.Action("GetDestinationList", "JqGridClients") %>' }
So make sure that such controller action exists and returns a partial view containing the HTML of the DropDown you want to be shown in the header:
public ActionResult GetDestinationList()
{
return PartialView();
}
and ...
Only top voted, non community-wiki answers of a minimum length are eligible
