The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

jQuery server-side datatables loaded from MVC4 partial page

I am using jQuery Ajax UI tab and C# MVC4 . When I click on a tab, it loads partial view from the server. In one tab (i.e. partial view), I have jQuery DataTable which uses server side processing. ...
1
vote
1answer
21 views

Action returning Partial view and model

I'm new to MVC 3 and I have a question regarding the correct approach. Imagine I have a model: public class MyCustomModel { [Required] public string UserName { get; set; } ...
1
vote
2answers
42 views

Rails 3.0 undefined local variable when rendering a partial

I'm working with a Rails 3.0.20 app and I'm trying to pass a local variable through a partial and it's displaying 'undefined local variable' I've had a look at the other posts on this issue and ...
1
vote
2answers
27 views

MVC Multiple forms in PartialView returns null on postback for except the 1st one listed

Ok, I hope someone out there can help me out on this one (Thanks in advance!). I'm using MVC4. My ContractsModel contains (among other things) a list of ContractModel(s). In my partial view, I ...
0
votes
2answers
38 views

Get the model of a partial view and use it in an action link

Let's say that I have this view: @{ ViewBag.Title = "Send Items"; } <h2>Sent Items</h2> <p> @using (Html.BeginForm()) { ...
0
votes
1answer
41 views

AngularJS: load partial view into page dynamically

Creating my first AngularJS app. A ng-repeat:er loads titles. Each title is clickable. When clicking a title, an ajax-call is getting more JSON data. I need to add this data below the clicked title. ...
0
votes
1answer
34 views

When model is not valid, return to partial view inside a view, with error message

In my asp.net MVC 4 project, I like to safe something from a partial view, which is when a user clicks for "more details". Saving the data is no problem, closing the partial view is no problem, open ...
0
votes
2answers
21 views

binding Select list in PartialView

I need to generate a dynamic dropdown list in a partial view using ASP.NET MVC 2. controller: [HttpGet] public ActionResult GetDestinationList() { JqGridClientRepository ...
1
vote
1answer
130 views

MVC4 Razor Multiple strongly type partial view with action in one page

I have a requirement where I have Login and Register form in Homepage. I believe this quite a common scenario however I am having difficulty achieving this. This Login and Register forms are two ...
0
votes
1answer
22 views

Is it possible to convert a string into a partial?

I have a string that stored in my database that is used as a custom layout. I would like to parse their custom layout inside of my app layout, by using : render_to_string(partial: custom_template, ...
0
votes
0answers
15 views

MVC - Toggling display options in a reused partial view

I'm wondering what is the correct way to toggle visibility on a partial view component, used by multiple screens. For example: if the ItemOrder entity has these fields, and the corresponding edit ...
0
votes
0answers
33 views

A list I need to pass to a partial view is always null

I am building an app that needs to manage data. In my controller I have 2 lists: a list of items displayed at the screen, and a list of items that is updated each time the user adds or remove an item. ...
1
vote
1answer
40 views

Yii loading jquery multiple times

I currently have a page which renders 6 partial views. The problem that I am now facing is that, because I need to set processOutput to TRUE, jquery is loaded multiple times. I tried to resolve this ...
0
votes
0answers
18 views

form html tagg is not added when Html.Partial helper is used

I'm rendering a partial view in a foreach loop inside a View. the partial view contains a container tag which I really need for jquery validation. the tag is shown for all the elements in the for ...
1
vote
1answer
36 views

Rails form in a controller action, rendered in another view?

Let me preface this with "I am new and inexperienced". I will setup the scenario followed by my question, in detail. Here is the scenario: I have a contact controller, with new and create actions. ...
0
votes
1answer
19 views

localization for mvc ajax form and partial view

I have used resources file to create multi langual mvc3 application. In _viewStart.cshtml I have these two lines which makes it that loclization works for all views except partial views which is ...
0
votes
2answers
48 views

jQuery Append Not Recognizing Element in jQUery Loaded Partial View

Hopefully this makes sense... I have a page that loads up a dialog box. The shell of the dialog box actually resides in the HTML of the main page (display:none). In the dialog box I have a partial ...
0
votes
1answer
24 views

(PartialView) The model item passed into the dictionary is of type 'Customer', but this dictionary requires a model item of type 'UserProfile'

@model Customer @Html.Partial("_UserProfile", (UserProfile)Model.UserProfile) When i run this code, i get this error: The model item passed into the dictionary is of type 'Customer', but this ...
0
votes
0answers
67 views

Using ng-grid in partial page

Is there any example of using ng-grid in partial pages. Whenever I try to use, an error pops up as TypeError: Cannot set property 'myData' of undefined. My App.js 'use strict'; // Declare app ...
0
votes
1answer
34 views

WPF Prism MVVM - Same “Partial View with Command” in one page, how to subscribe the Command?

My project using MVVM design pattern using Prism and Unity, basically following the famous Prism video by Brian Lagunas, but the video didn't mention how to create/use partial view, User Control used ...
0
votes
2answers
33 views

Having extra end in (if else) containing form in it?

I have this partial in which i am using if elsif and form in them on certain conditions. I am getting a end tag problem because of the conditions in rendering a partial. Its saying me that i have a ...
0
votes
0answers
27 views

Include partial script in another app in symfony 1.4

How can i use frontend app module's partial in backend module? My file structure as follows. apps - backend - modules - user - templates - ...
0
votes
2answers
75 views

Using Escape Button to exit jquery popup dialog

I managed to create a partial view with jquery for a popup dialog to show a create form, now my next problem is how to use the Esc key on the keyboard to return the page before the pop-up. I tried ...
0
votes
0answers
26 views

Haml nesting with rendered partial in Rails

Consider a partial.haml like this: - haml_tag :body, {:id => @instance_var} What I'm trying to do is to nest haml content under a rendered partial. Something like: = render 'partial_file' do ...
1
vote
1answer
28 views

An object used as a model in a partial view creates another in the controller?

There is something weird going on in my app. It's not dammageable, but it's a curious behavior and I'm reaching out to you to understand what's happening. I was working on some partial view based on ...
0
votes
0answers
24 views

two views and one controller

I have a controller which returns a view for displaying scheduler. Now I need to create another function so that if I double click the scheduler, kendoUI window opens. I 'm facing two main problems ...
0
votes
1answer
49 views

render partial view in MVC

I am using MVC Structure. I have to create a report which can be filtered by drop downs. I am thing to use a partial view to display report. HEre is the structure of the page I want to achieve. On top ...
1
vote
1answer
36 views

About the partial View and Jquery

I read this link Loading a partial view in jquery.dialog, but since I am still new, I dont know where should I put the codes. Should I put it in my partial view or to the page where the link to create ...
0
votes
1answer
35 views

How to develop a part that will be repeatable, and why?

I'm still beginning in Web App development and I have a question to ask to any veteran developers. In my MVC-App I have a part that will be used several times. This part is a search filter for the ...
0
votes
1answer
37 views

A Strongly Types Partial View which is dynamically model binded at runtime to 2 different model class

There is main RegisterModel calling nested HomeAddress and MailAddress model. public class RegisterModel { Public string FirstName {get; set;} Public string LastName {get; set;} Public ...
1
vote
1answer
70 views

Node.js + Express + Handlebars.js + partial views

I am trying to make a simple HelloWorld project with Node.js|Express using Handlebars.js as a server template engine. The problem is that I couldn't find any examples of using such chain, especially ...
1
vote
1answer
62 views

Render partial view as string

I know this looks like a duplicate question, but please read the whole question before marking it as duplicate. First of all, I'm simulating the windows service in my ASP web application to send ...
1
vote
0answers
33 views

Declaring a script from a PartialView only once

I have a Razor PartialView that works with Metro-UI-style tiles. It's a very simple PartialView that allows me to display tiles bound to a ViewModel, really nothing spectacular. Since it's not used ...
0
votes
0answers
51 views

Render the same user control multiple times

Is it possible to render the same User Control (.ASCX) multiple times? The idea is to create dashboard with widgets that are represented as User Controls. There can be several Widgets that differ with ...
1
vote
1answer
31 views

Is there a convenient way to prototype future structure of View layer of MVC framework (Rails or like) on pure HTML?

My "Rails friends" have a situation when their UI designer is beginning his work on prototyping UI screens on his own - their Rails programmer is busy and is going to join this work later, probably ...
0
votes
1answer
90 views

Unobtrusive Ajax Form for partial view

I'm having trouble using unobtrusive ajax to post data from a contact us form. My Partial View is like this: @model site.ViewModel.Home.ContactUsViewModel @using ...
0
votes
1answer
29 views

How to implement this nested linked_to_function?

In my view I want the user to be able to browse a catalog of products. The hierarchy is as following: Category Product AdditionalInfoForm In my main view I render a partial for the ...
0
votes
2answers
106 views

Single strongly Typed Partial View for two similar classes of different types

I have a Register Primary View which shows two different types of Addresses 1. Home Address 2. Mailing Address public class RegisterModel { public AddressModel ...
0
votes
0answers
52 views

mvc 4 partial view is not submitting Values

<HttpPost()> _ <ValidateAntiForgeryToken()> _ Function CreateCompany(ByVal CT_Company As CT_Company) As ActionResult If (ModelState.IsValid) Then 'save ...
0
votes
1answer
32 views

Making fields_for display properly in multistep form partial

I'm inserting =f.fields_for :customer in the second partial of a multi step form as described here. It works fine if it's on the first step of the form (_voucher_partial.html.haml), but won't display ...
1
vote
1answer
84 views

using strongly typed partial views inside another Strongly Typed view

I have NameModel and RegisterModel and SuperClass classes as below: - Case 1: - Using SuperClass public class SuperClass { public RegisterModel Register{ get; set; } public NameModel NameInfo ...
0
votes
0answers
52 views

how to get this to display correctly in individual lines? (rails 3 view rendering)

This may be a bit complicated to explain so please bear with me. I'm using the public_activity gem FYI. Please post up any questions below if you need to see additional code At a high level, what I ...
0
votes
1answer
117 views

MVC4 Selecting from a List of Items in a view

I'm looking for a way to select from a lists of items that I have retrieve from a database. I send these items to a view and I want to select from the list and return this to the controller to ...
0
votes
1answer
52 views

Ruby on Rails - Cannot assign local variable for haml partial

- content_for :logo, render('logo', :obj => @sites_page) raise in _logo.html.haml -raise local_variables.inspect = link_to popup_information_path(obj.class.short_name, obj), :remote => true ...
0
votes
1answer
83 views

Rails Ajax partials passing form builder

I am loading part of my form with ajax depending on the value of a dropdown as follows: ..form_partial.js.erb $('#custom_ajax').remove(); <% if @house == "Rent" %> ...
5
votes
2answers
262 views

How to create dynamic, multiple partial views using repository pattern in MVC

I am trying to have a general home page that depending on the parameter passed to the control, different content (modules) will be displayed. For example, a user may select Kentucky from the menu ...
0
votes
1answer
27 views

How to load Scripts into a partial view MVC

I have an MVC application using Razor. I have a partial view that uses a jquery script. The jquery script only works when it is referenced in the partial view and not in the _layout view. When using ...
1
vote
1answer
31 views

Some of my locals are not passed to my partial

I encountered a very strange problem. Consider the following code snippet: <%= render partial: 'my_partial', locals: { a: 1, b: 2, c: 3 } %> And the partial <%= a %> <%= b %> ...
0
votes
1answer
29 views

Partial View Refresh and Script Doesnt Work

In my C# MVC4 application, I have a partial view that contains these two scripts: <script type="text/javascript" charset="utf-8"> $(document).ready(function () { ...
0
votes
1answer
123 views

MVC4 Ajax.ActionLink Breaks

Answered!! Okay, I am EXTREMELY new to MVC4 and am still in the learning stages of Ajax so I could really use some help with this one.... the more I work on it, the messier it gets. :( Here we go! I ...

1 2 3 4 5 25