Tagged Questions
The asp.net-mvc-partialview tag has no wiki summary.
3
votes
2answers
432 views
ASP.NET MVC PartialView postback: how to validate data?
Hello
I am using ASP.NET partial views like in this example
<% using (Html.BeginForm()) { %>
<table cellspacing="2" cellpadding="0" border="0" width="100%">
<tr>
...
2
votes
2answers
129 views
ASP.NET MVC: Correct place for Partial Views?
Can anyone confirm the best place for a partial view in ASP.NET MVC?
My thinkings are if its a globall view thats going to be used in many places then SHARED.
If its part of a view thats been ...
1
vote
0answers
686 views
Asp.Net MVC WebGrid Select method leads to loosing results in Partial View
I have the following setting:
• A WebGrid that displays a bunch of data
• A search box form that performs an Ajax action and displays a partial view on the page
• When I click on to select one ...
1
vote
1answer
54 views
Is it possible to utilize internal methods on controllers to reduce duplication?
in a partial view I have the following:
<%Html.RenderAction(MVC.User.GetComments(Model.UserGroupName)); %>
can I render a Controller's PartialViewResult in a View without going through ...
1
vote
1answer
170 views
Can a partial view be used to do Ajax item updates?
I have a table built from a list of defect codes.
Can part of each row load a sub-table item complete with submit buttons?
Sample table:
<table><tr>
...
1
vote
2answers
254 views
What HTML helper do I use to create a simple dropdownlist that doesn't take in any variables?
I want to have a simple select->option dropdown list that I am not passing any (SelectItem collection) values to. I already know the values so I don't need to do all that (they are static).
Need to ...
0
votes
0answers
31 views
Exception: Child actions are not allowed to perform redirect actions
I am getting the following exception: Child actions are not allowed to perform redirect actions.
in Site.Master:
<!-- begin login box -->
<% Html.RenderAction("LogOn", "Account"); ...
0
votes
1answer
57 views
ASP.NET MVC 3 - tell partialview to regrab the viewdata values?
Let's say I have a partial view X.ascx like this:
<div id = "updateTargetIdForAjaxForm">
... javascript code which only has function definitions.
... ajax form with buttons inside
<div ...
0
votes
1answer
45 views
Is not the way I want PartialViewResult
I try something.I apologize in advance for my english.
My Action code;
public PartialViewResult showProduct()
{
var query = db.Categories.Where((c) => c.CategoryID == 4);
return ...
0
votes
1answer
52 views
Reload just the partial view [ASP.NET MVC]
I have a form "Create" implemented an a partial view associated with post method "Create",how to reload just this partial view when firing POST method, without reloading all the page containing my ...
0
votes
1answer
180 views
MVC3: How to correctly call Ajax to update PartialView
I have 2 Actions in my controller:
// GET: /Directory/
public ActionResult Index()
{
ViewModels.DirectoryIndex model = new ViewModels.DirectoryIndex();
return View(model);
}
// POST: ...
0
votes
1answer
474 views
Is Error.cshtml a partial view or what?
I'm refactoring all my partial views to use the leading underscore naming convention (didn't know about this convention when I got started, don't want to deviate from such a plain convention). But ...
0
votes
1answer
253 views
Update partial view after rebinding Telerik grid
I have a MVC3 view that has a Telerik grid with Person information. This grid will be "rebinded" when adding/changing/deleting a person via ajax.
On the same page is a user control with a partial view ...
0
votes
1answer
496 views
Update viewModels through jquery ajax
I'd like to implement a product using asp.net mvc.
My Product is devided in several modules and i want to use the jquery tab widget to guide the user trough the submission.
My ProductController sends ...
0
votes
2answers
903 views
ASP.NET MVC 3 Razor Rendering Partials from One Controllers View to Another Controllers View
What is the best way to redirect to another partial view from a partial view without refreshing the main page. So 1 partial view changing into another partial view after a button click. Can you do ...
0
votes
1answer
86 views
asp.net mvc ViewData
I'm having some problems with parsing in some data to a PartialView.
When parsing in a Dictionary the properties Values and Keys is set in the ViewData ...
How can I merge the Dictionary with the ...
0
votes
1answer
59 views
Is it possible to access tags located in a partial view from my css file (external file)?
Let's say, I've got this.
<div id = "myDiv">
<% Html.RenderPartial("MyUserControl"); %>
</div>
and inside my partial view, I've got this.
<% = htm.TextBox("myTextBox")%>
...
0
votes
3answers
176 views
Handing forms in ViewUserControls
I am rendering out a ViewUserControl (.ascx file) in a view:
<% Html.RenderPartial("Comments", Model.Comments); %>
This ViewUserControl shows associated comments on an entry. I would like ...