The radiobuttonfor tag has no wiki summary.
0
votes
0answers
17 views
Single RadioButtonFor has two ID attributes
I have used RadioButtonFor() with overridden IDs in many places in my project, but in just one place I have very odd behaviour. The rendered input control has two ID attributes, one with a lower case ...
0
votes
2answers
247 views
MVC RadioButtonFor group
I have a class for a PDF
public class UIClonePDFDetail
{
public int CatalogueID { get; set; }
public List<PDF> PDFToClone { get; set; }
}
The pdf class is:
public ...
0
votes
1answer
210 views
How to keep distinct name for each radio button
I have an MVC3 Internet Application.
Basically it has a registration form, which has 3 radio buttons on it. Whenever i check one of the radio button and hit submit button, it should go to the ...
0
votes
1answer
48 views
Using a Radio-button to trigger the method
Please help me on how I can use a radio-button to execute a method once radio button is checked, here is my code:
if (RadioButton1.isChecked()){
UpdateResultsnewk();
...
1
vote
1answer
573 views
MVC3 RadioButtonFor value is not binded to the model
I have a MVC3 Razor form. It have a radiobutton list and some another text fields. When I press submit controller post action get the view model, which have all fields seted correctly, except ...
0
votes
3answers
1k views
Set @Html.RadioButtonFor as Checked by default
I am not able to set the default radio button to "Checked" !
I am using @Html.RadioButtonFor :
<div id="private-user">
@Html.RadioButtonFor(m => m.UserType, "type1", new { ...
1
vote
2answers
989 views
How to pass IEnumerable object or data from view to controller?
I have created a strongly type view. I want to pass IEnumerable Object or data from View to Controller. Following are my Model, Controller ,view
My Model:
public class UserDetailsClass
{
public ...
1
vote
1answer
283 views
View to Controller in mvc3
I have a problem on passing values from view to controller
Here is my view:
@model IEnumerable<SQLOperation.Models.QuestionClass.Tabelfields>
@{
ViewBag.Title = "Question";
}
...
1
vote
1answer
725 views
MVC3 @Html.RadioButtonfor Pass data from view to controller
Basically what I am trying is to create a feedback form with a question which has four answers (Radio Button) using MVC.
In View: I am able to get questions and answers in view with radiobutton to ...
2
votes
2answers
745 views
MVC3 @html.radiobuttonfor
Here is my class :
public class QuestionClass
{
public static FeedbackDatabaseDataContext context = new FeedbackDatabaseDataContext();
public class Tabelfields : Question
{ ...
0
votes
1answer
2k views
Generating an MVC3 RadioButton list in a loop statement
A collegaue of mine created a model and here it is.
Model
[Serializable]
public class ModifyCollegeListModel
{
public List<SchoolModel> CollegeList { get; set; }
public ...
1
vote
1answer
1k views
How can I override the name attribute of a RadioButtonFor?
I'm trying to group together radiobuttons that are creating using a for loop and Razor syntax. Here is the code:
@for (var i = 0; i < Model.Sessions.Count(); i++)
{
...
0
votes
1answer
1k views
Bind radio button to single model preoperty in MVC3
How do you bind 2 radio buttons to a single model property in MVC using @Html.RadioButtonFor()
1
vote
1answer
532 views
Possible to change name of RadioButtonFor?
I am using foreach loop insoide my view to display few radiobutton rows..
sample radiobutton
<tr>
<td width="30%">
Integrity
</td>
<td ...
0
votes
1answer
1k views
ASP.Net MVC 3 No Default Selection for RadioButon
I am developing an ASP.Net MVC 3 Web Application using Razor Views. Within the View I would like to ask the user a question which can only have a Yes/ No answer, therefore, I am planning on using two ...
0
votes
1answer
49 views
How do I make radiobuttonFors selectable by its text?
I am stumped by the following:
Here is my code:
<div class="editor-field">
<% foreach (string Item in ...
10
votes
1answer
8k views
MVC4: Two radio buttons for a single boolean model property
I'm attempting to find the correct Razor syntax for mutually exclusive radio buttons that both reflect the value of a boolean property on my model. My model has this:
public bool IsFemale{ get; set; ...
0
votes
2answers
1k views
Editor Template (Radio Button List) and Model Item Passed into Dictionary is of type [enum] but dictionary requires model type X
Looked around at similar titles, but nothing on point or nothing worked. I understand why I get the error, I am just trying to figure out how I can fix it to use my EditorForModel. I am getting this ...
1
vote
0answers
260 views
MVC RadioButtonFor Challenge to gen jQueryMobile Compliant HTML
I am working in .NET, VB Razor MVC4 with JQueryMobile.
My issue is in trying to get the @Html.RadioButtonFor to generate properly formatted HTML to get picked up by the JQuery Mobile.
This code:
...
1
vote
0answers
645 views
MVC3 Hierarchical View Model with check boxes and radio buttons
I'm at the point of pulling what little hair I have left out - been learning MVC over the past few months, so I'm relatively new to it, though I've covered a lot of ground...
I'm having trouble ...
2
votes
2answers
648 views
How to give names for dynamically generated radiobuttonfor
I am generating radiobuttonfor dynamically.
My code runs as,
@{int questionCount = 0;
}
@{foreach (SectionDetail sectionDetail in section.SectionDetails)
{
...
0
votes
1answer
1k views
Model Binding RadioButtonFor() default Select MVC3.0?
Hi I have a ModelBinded View
foreach (var Model in Model)
{
@Html.RadioButtonFor(modelItem => Model.DefaultLocation, Model.AddressID, new { @Checked = Model.DefaultLocation, id = ...
1
vote
1answer
3k views
Razor: RadioButtonFor enum and displaying selected item in a summary
I [Edit: voted to] deleted a post wherein I asked a question on this topic. I am trying to re-formulate my question in the hopes that I explain myself correctly. I am doing this because I noticed over ...
1
vote
2answers
2k views
Postback on RadioButtonFor in MVC
I have 2 radio buttons in my mvc webpage.
<% using (Html.BeginForm("Search", "Search"))
{ %>
// some html codes
<%= Html.RadioButtonFor(m => m.Agents, "A", new { Checked = ...
1
vote
2answers
1k views
asp.net mvc radioButtonFor in forEach
Does anyone know why this isn't working? any source code changes would be great.
<% foreach (var i in Model.talentImages) { %>
<div style="padding:15px;">
...
0
votes
2answers
1k views
Radio button using Html.RadioButtonFor runs server code when clicked
How can I use Html.RadioButtonFor to create radio button which when clicked runs code on the server and controls visibility of certain text box. earlier I used to create <asp:control with ...
13
votes
10answers
43k views
How to Set RadioButtonFor() in ASp.net MVC 2 as Checked by default
How can i Set RadioButtonFor() as Checked By Default
<%=Html.RadioButtonFor(m => m.Gender,"Male")%>
there is way out for (Html.RadioButton) but not for (Html.RadioButtonFor)
any Ideas?
13
votes
2answers
15k views
RadioButtonFor in ASP.NET MVC 2
Can someone provide a simple example of how to properly use Html.RadioButtonFor? Let's say it's a simple scenario where my model has a string property named Gender. I want to display two radio ...