The razor-declarative-helpers tag has no wiki summary.
0
votes
0answers
37 views
Utilizing HTML Helpers Within jQuery
I have implemented a button to add rows to an HTML table on my MVC View; the following script will add a new row; this is my first project using jQuery with MVC - so, I think I may be pushing the ...
0
votes
1answer
35 views
When extending HtmlHelper can't get intellisense to work without a using statment
I have extended HtmlHelper, then when trying to use it in partial view it doesn't show in intellisense, I have added the namespace to the web.config. the only way to get it to work was to add a using ...
1
vote
1answer
160 views
Webmatrix/Razor SQL query - Websecurity variable
I am trying to write a query to show all records owned by the current logged on user but i am having issues inserting the "userid" variable into the string?
@{
Layout = "~/_template1.cshtml";
var db ...
0
votes
1answer
65 views
How To Deal With spaces in an MVC4 asp.net App (without c#)
I'm having trouble wrestling with inserting spaces in commas in a foreach loop. Is there a better way to do this? It bother
@{ var multipleSpeakerSeparator = " "; }
@foreach (var speaker in ...
0
votes
1answer
237 views
Razor validation firing without [required] attribute
Here is my model
public class SchoolUser
{
public int schoolId { get; set; }
public int contact1UserId { get; set; }
public IEnumerable<DataLayer.salutations> Salutations { get; ...
0
votes
1answer
342 views
Include external Razor Helper Function
Is there a way to import a razor in-line helper in the view?
I tried the following:
<% Html.Partial("PaginationTemplate"); %>
<!-- later down -->
<%= ...
0
votes
2answers
141 views
Html.BeginForm() in declarative helper methods
I'm trying to create a from using Html.BeginForm() in a razor helper method in a partial page (Razor) in app_code folder . but no success .
@helper GenerateForm(...){
@using(@Html.BeginForm(.... ...
0
votes
0answers
27 views
Razor exception
I'm trying to use a couple of custom extension methods in a view (yes, I know there are better approaches), but can't get Razor to recognize my code:
@using(Html.BeginForm())
{
...
3
votes
1answer
228 views
Add colons and stars to helper generated labels
I'm using Razor and Data Annotations in a .NET 4.5 MVC app. This is from a view model:
[Required(ErrorMessage = "Title is required.")]
[Display(Name = "Title: *")]
public string Title { ...
4
votes
1answer
3k views
Using and Creating helper in Asp.net MVC4 Web Application
I am using the Asp.net mvc4 WebRole, and I found this is a Web Application , Not a Web Site.
after reading this article, I knew how to add customer Helper function in Asp.MVC4. In Web Site Appliction ...
0
votes
1answer
155 views
ASP.NET MVC helper js function not working in Razor 4
I have the following razor helper functions in a cshtml file, it works at asp.net mvc 3, after I migrate it mvc 4, it's not working (compiling) any more.
The purpose of the major function ...
0
votes
0answers
165 views
RazorScriptManager NullReferenceException
I have 3 sites in MVC3 and MVC4, other than that particular characteristic the sites are identical and very simple: a landing page and a submit page. These sites are used by a large number of people ...
0
votes
1answer
246 views
Creating Razor radio buttons with AJAX
I currently have a Razor view the makes an AJAX (getJSON) call. The Ajax call requests a list of schools that work with us and "append" the data to a @Html.DropDownListFor called schoolID.
...
1
vote
1answer
378 views
What would be the type of item in MVC4 WebGrid
I am using webgrid to displat list of records.
My view is tightly coupled with IEnumerable.
@model IEnumerable<Models.SitesConfig.Configuration>
I am binding webgrid with Model.
var grid = ...
1
vote
1answer
175 views
mvc 3 dropdownlistfor - selected value is always null
I have dropdowlist like this:
public class RegionLine
{
public Nullable<int> regionId { get; set; }
[Display(Name = "Województwo: ")]
public string regionName { get; ...
2
votes
1answer
254 views
Stuck on Razor extension
I'm trying to refactor some commonly-used code into a helper extension and am stuck with the syntax, largely because I don't have a full grip of generics, lambda expressions etc.
I'd like to be able ...
1
vote
1answer
376 views
ASP.NET MVC - razor. Create a panel using @helper
I'm trying to create the following Helper using the @helper utility present in ASP.NET MVC.
The idea is to create a Panel and call to this helper from a page for set the title and the body of the ...
0
votes
0answers
60 views
Keeping viewmodels up to date with changes in child views
I have a Razor page with 2 child views inserted into it using Html.DisplayFor():
...
@Html.DisplayFor(model => model.ModelObject.Lines, new { IsEditable = Model.ModelObject.CanEdit })
...
...
0
votes
1answer
190 views
MVC 3 RAZOR coding logic is rendering as text even they are within @{ }
What is wrong with following line of codes?
<table>
@{
string subGroup = "";
foreach (var item in Model)
{
if (item.SubGroupName ...
1
vote
2answers
691 views
MVC2 / MVC3 Html Helper or Editor Template solution required
I have a jquery based bespoke lookup control that works well, but I wish to encapsulate it into a neater solution. The below is the code included in the Razor view. Behind the scenes there is also a ...
2
votes
1answer
238 views
Null reference when putting a function in an @helper - where can I put it or how can I deal with it?
I am trying to calculate a price, something like:
@{
Model.Prices.total =
((Input == choice) ? a : b)
+
((AnotherInput == anotherchoice) ? c : d)
;
}
This works well ...
2
votes
1answer
270 views
Can you use a @Helper inside an @Helper?
I am not sure this is possible.
I have a bunch of @Helper's inside a view AND in other views:
@helper ViewHelper1()
{
...
}
@helper ViewHelper2()
{
...
}
etc.
I have repetitive code that is ...
1
vote
1answer
1k views
Can I return a string using the @helper syntax in Razor?
I have a RazorHelpers.cshtml file in app_code which looks like:
@using Molecular.AdidasCoach.Library.GlobalConstants
@helper Translate(string key)
{
@GlobalConfigs.GetTranslatedValue(key)
}
...
0
votes
1answer
438 views
reference model variable to global variable value in .net mvc3
with curiosity...
i am seeking for a temporary solution that will lead to an expansions of a system side controller.
i a mvc3.net razor based project with 100+ of class file
all of the class file ...
2
votes
3answers
2k views
HTML helpers in ASP.NET MVC 3 with Javascsript action
I have many HTML helper in Helpers.cshtml file, but some of the helper (html) need some jquery action, so how do i can call jquery inside helpers.cshtml, is that possible?
i know we can keep the js ...
4
votes
0answers
130 views
Can I have private functions or private declarative helpers within a declarative helper? [duplicate]
Possible Duplicate:
Using @helpers from another View in Razor ASP.Net MVC3
My environment: ASP.NET MVC3 with Razor.
I have some reusable view logic in declarative helpers in the App_Data ...
0
votes
1answer
448 views
Testing Custom Razor Helpers in MVC3
I've created a custom helper according to instructions here and here. Here's a snippet of what it looks like (ThemeHelper.cs):
@inherits Helpers.HelperPage
@using System.Web.Mvc
@using ...
0
votes
1answer
678 views
Share a razor declarative helper between multiple mvc web projects
Let's say I have 2 MVC web projects (web1 and web2) and 1 project containing shared views (common) (using the razorgenerator of David Ebbo)
web1 and web2 both have a test.cshtml file. Several blocks ...
1
vote
2answers
802 views
How to pass HTML fragment (as a delegate?) to a declarative Razor Helper?
I've been writing some declarative Razor Helpers (using the @helper syntax) for use with the Umbraco 4.7 which now supports the Razor view engine (though I would imagine this applies equally to ...
5
votes
3answers
4k views
Using @Html inside shared @helper in App_Code
I am building a very basic MVC3 site while I learn and I am having difficulty with the following declarative Razor html helper.
Inside RMB.cshtml inside App_Code folder:
@helper ReplaceCrLf(string ...
0
votes
1answer
438 views
Using @helpers from another View in Razor ASP.Net MVC3
I want to write a few simple @helpers to use in several views.
I want them to be inside a Razor .cshtml file (not in a c# class) to have the HTML syntax highlighted.
I can easily access @helpers ...
7
votes
1answer
2k views
ASP.NET MVC - calling Razor @helper from another @helper
I've been implementing some @helper functions in Razor based on Scott Gu's post, and things are going pretty well.
What I was wondering though, is if it's possible to call one @helper from another. ...
16
votes
6answers
3k views
Why is the HtmlHelper instance null in a Razor declarative @helper method?
Using MVC 3 RTM I'm getting a strange NullReferenceException:
@helper TestHelperMethod() {
var extra = "class=\"foo\"";
<div @Html.Raw(extra)></div>
}
It turns out that Html (of ...

