Refers to the `HtmlHelper` class for ASP.NET MVC views.

learn more… | top users | synonyms (3)

0
votes
0answers
21 views

Ajax.BeginForm onSuccess refreshes Partial View causing events to unbind - anyway to avoid this?

When submitting a form using the Ajax.BeginForm() helper in a partial view on MVC4 - onSuccess the partial view reloads and and causes all of my events to be unbinded within this partial view. In the ...
1
vote
2answers
23 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
1answer
12 views

tagbuilder is not showing up in source

I started working on Asp.Net Mvc Html helper with tagbuilder. I am trying to create a table with tagbuilder and when I see source, table is created but not tr and td. Where I am missing the point? ...
0
votes
1answer
18 views

Preload and disable EditorFor

I'm doing some practice with MVC4. My practice project is a simple kind of comment board/forum that allows both registered users and anonymous users to post comments. Currently, I have my code set ...
0
votes
1answer
27 views

html dropdownlist helper in javascript

I'd to set a local javascript variable to the output of an html helper. See the following snippet for an example: <script type="text/javascript"> $(function () { var dtypes = ...
2
votes
1answer
36 views

Get [Display] attribute value from resource in MVC

I have used the [Display] attribute for one of my enums: public enum eCommentType { [Display(ResourceType = typeof(FaultManagementStrings), Name = "NormalComment")] ...
0
votes
1answer
37 views

How to create Html.DropDownList or Html.DropDownListFor from a strongly typed model

I have a strongly typed model. @model IPACS.Models.IPACS_Departments This model has a departmentID, name, description, owner. I need to populate a DropDownList from this model but I'm not sure ...
0
votes
0answers
19 views

MVC, how to make the extension HtmlHelper.GetCustomAttributesForModel

How do I make the following extension function: HtmlHelper.GetCustomAttributesForModel() There is a: HtmlHelper.DisplayNameForModel() and a HtmlHelper.IdForModel() so somehow these functions ...
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. ...
0
votes
2answers
47 views

Default value/load value in Html.DropDownListFor

Cant find any solution to have another value as default when entering the page. It's always my first value. Creating the "selectlist" List<SelectListItem> list = new ...
-6
votes
1answer
24 views

php help-get information of a site [closed]

all i want is when someone types in a username it will check if its a real username and then give information back for example http://www.minecraft.net/haspaid.jsp?user=justin so if false not real ...
0
votes
0answers
17 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 ...
0
votes
1answer
79 views

How to pass multiple parameters dynamically into Html.Action in Asp .Net MVC

I have parameters to send like @Html.Action("actionName", "controlName", new{ pName1 = "pValue1", ... }) But, pName1 = "pValue1", ... will come with ViewBag from a controller. What should type of ...
1
vote
1answer
25 views

CheckBox helper keeps sending false value no matter what's the selection

Here's my code: @using (Html.BeginForm("AddMCondition", "Admin")) { <td class="admin-textbox"> @Html.TextBox("txtMCondition") </td> <td> @foreach (var exerType in ...
-6
votes
1answer
47 views

How do I parse this python string?

<a href="index.php?c=playerview&amp;P=1089&amp;LS=100"> \n', ' \n','\', \' Zeppelin-\\n\', \'\\n", \' <td class="stats" colspan="1"valign="top"> \\n\', " \\\\n\', \' ...
0
votes
1answer
28 views

ASP.NET MVC ActionLink renders erroneously

SO community I have the following issue: If i render an ActionLink like this: @Html.ActionLink(titleText, Title.Href.TargetAction, Title.Href.TargetController, ...
-1
votes
0answers
74 views

Create custom HTML Helper to display dynamic navigation menu

I'm trying to find the best approach in order to display a dynamic navigation menu on every page of my web application. Basically, each page will display several links based on current page (a pair ...
0
votes
0answers
31 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 ...
1
vote
1answer
44 views

MVC4 DropDownListFor - showing correct result

I have an EDIT view strongly typed to a model that has 2 fields: Name and category. Name is just a string and category is chosen from a dropdown list. My controller: [HttpGet] public ...
0
votes
1answer
43 views

Populating dropdown list with two columns from database

I'm working on MVC3 project. At my controller I already have a code that gets the Descr column from StockClass table. After that I fill a ViewBag with this list in order to retrieve it from the view ...
2
votes
2answers
39 views

Custom Attributes for SelectlistItem in MVC

I would like to create a custom htmlhelper(Extension Method) for dropdownlist to accept custom attributes in the Option tag of the selectlistitem. I have a property in my model class, that I would ...
0
votes
1answer
28 views

Database access in asp.net

I am not very much familiar with razor view engine. I tried this code. @for(var item in ViewBag.list) { @foreach (var itemvote in ViewBag.listVote) { ...
0
votes
0answers
48 views

Anchor Helper in Zend Framework 2

I have already rendered succesfully a navigation menu using zf2 navigation helper. I've found link href helper. But I can't find a helper to write: <a ...
0
votes
1answer
19 views

Configure the Javascript function + Html Helper

Is there a way to configure a Javascript(which accepts few parameters) and initialize a function with user specified parameters in an unobtrusive way with data-attributes? Any reference would be ...
0
votes
1answer
48 views

Using a custom Html Helper to make an image as a link: how to pass data in the RouteValueDictionary

I'm using these html helpers: /* * Image Link HTML helper */ /// <summary> /// return image link /// </summary> /// <param ...
0
votes
1answer
21 views

Custom helper loading an image and that would work as a link

I have made this custom Html Helper: public static MvcHtmlString Image(this HtmlHelper _helper, string _url, string _altText, object _htmlAttributes) { TagBuilder builder = new ...
0
votes
2answers
103 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
1answer
64 views

Radio button not showing as checked

I'm using Knockout with MVC 4. My cshtml is: ... <span>@Html.RadioButtonFor(m => m.isActive, true, new { @class = "statusRadioButton", data_bind = "checked: isActive" })</span> ...
0
votes
1answer
28 views

Custom HtmlHelper for a dropdownlist shows all the values as plain text instead of building a dropdownlist

I have tried to build a custom DropDownList using this method here: http://blog.platformular.com/2011/12/16/country-drop-down-html-helper-for-asp-net-mvc/ Basically, the helper loads an Html File, ...
1
vote
1answer
29 views

Image Helper doesn't render the image (MVC3)

I'm trying to create an image helper that will render the image but my helper does not render the image. All I can see is shown in the screenshot below. Can anyone help spot the reason why? Please ...
1
vote
2answers
32 views

How to create a custom class similar to HtmlHelper and initialize with ViewContext?

Our project uses a lot of custom HtmlHelper extension methods to be referenced in views like: @Html.MyHelperMethod() However, I'd like to keep them separated out from the system ones and be able to ...
0
votes
2answers
33 views

How to use Razor EditorFor Helper to create a TextBox with a value in from ViewBag

I simply want a text box editor field to appear with a value in it that has been passed with a ViewBag for example if ViewBag.Savings contained '6': I tried something like: @Html.EditorFor(model ...
1
vote
1answer
142 views

CSS style not being applied with input-validation-error in ASP.NET MVC 4.0

I am trying to alter the border of an input to a different color when that input throws a validation error in ASP.NET MVC. From what I can tell, I am ndoing it correctly, but alas it doesn't work. ...
0
votes
3answers
78 views

Setting a default selected value in DropDownList in MVC3

In MVC3 I have this code at my controller. It retrieves a List of IDs\Names from Installation table and creates a ViewBag var vs = dba.Installation.OrderBy(q => q.InstName).ToList(); ...
0
votes
1answer
27 views

How to call the properties of a HTML Helper?

How can i change the property to editable Text box? for instance when I click a button the read only property will change to editable. @Html.TextBoxFor(m => m.SName, new { ...
1
vote
0answers
80 views

Html.BeginForm trying to pass id

I used to have a form for uploading a file and it was working fine, but to my surprise it wasn't binding the HttpPostedFileBase to the model any more. After a while I realized that it was because I ...
0
votes
1answer
35 views

CakePHP adding class to dateTime input

I use FormHelper::dateTime for DATE format. Anybody know how to add each other class for days, months and years?
1
vote
0answers
28 views

How to retrieve Display attribute in the Html Helper (GroupName)

In the HtmlHelper I'm trying to retrieve DisplayAttribute.GroupName of a property, by using ModelMetadata.FromLambdaExpression(expression, html.ViewData) However, property "GroupName" is missing ...
1
vote
1answer
57 views

How to create Expression<Func<TModel, TProperty>>;

Is it possible to create Expression<Func<TModel, bool>>() which can be used in different htmlHelpers (for instance in CheckBoxFor()), if I have a model object this ...
1
vote
0answers
39 views

What is a Fluent HTML Helper [closed]

I have met the term yesterday and could not understand the specifics of it and the difference between a "Fluent" and a "Normal" Html helper if there event a classification like that. Any help with ...
0
votes
0answers
38 views

unable to use html.serialize in my view(.vbhtml)

I am new to MVC, I had a requirement to show wizard steps and i was following the code explained in the below link for it. multi-step registration process issues in asp.net mvc (splitted viewmodels, ...
-2
votes
1answer
47 views

PHP script add button [closed]

I would like to add one more button next to the log in button same design for contact us (this button will be a link/ to a page "contact-us" can anyone help me and tell me how to do it ? Max's ...
4
votes
1answer
87 views

HTMLHelper, generating parameter of type “Expression<Func<TModel, TValue>> expression” out of property

I'm writing an HTML Helper for an editor. The idea is to get properties from the Model with attributes AutoGenerateField and build a table, each line of which contains a name of a field (also from the ...
0
votes
0answers
13 views

Custom helpers to reduce code

I would like to create some kind of function that returns portions of razor code. My boss asked me if we can group a set of kendo mvc extention methods into one function for example: ...
0
votes
1answer
57 views

html helpers overloads with razor syntax

@Html.TextBox("displayName", ViewData["cusDispName"], new { @class = "k-textbox", id = "CusMainDispName", disabled = "disabled" }) I need help in understanding the above code line with the razor ...
0
votes
0answers
12 views

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')'

I get this error: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /mnt/web4/a3/42/53484342/htdocs/EVERYDAYFRESH/wp-content/themes/duplex/functions/theme-options.php ...
0
votes
3answers
95 views

Prevent use of MVC's HiddenFor function

I have the problem documented here and here and here and especially here where, in an ASP.NET MVC4 view, the html helper function @Html.HiddenFor(m => m.ID) will use the "wrong" data and cause data ...
0
votes
1answer
70 views

Add Hidden Model List To Razor Form

I am creating a wizard and I need to propagate a list that I have created. The list is of my Contact model. I need to put this in the form so that when I post back to the controller on my final step ...
0
votes
0answers
52 views

ASP.NET MVC HtmlHelper - how do I write an attribute without a value?

I would like to be able to write attributes without values, such as autofocus. Now, I can do this: @Html.TextBoxFor(m => m.UserName, new { autofocus = true }) But of course this writes: ...
2
votes
2answers
150 views

Show “NULL” for null values in ASP.NET MVC DisplayFor Html Helper

Is there a way to get an @Html.DisplayFor value to show "NULL" in the view if the value of the model item is null? Here's an example of an item in my Details view that I'm working on currently. Right ...

1 2 3 4 5 23