私のacion methonからチェックボックスがチェックされているかどうかをテストしたいので、ビューからコントローラにチェックボックス値を渡す必要があります
これは私の意見です
@using (Html.BeginForm("Index", "Graphe"))
{
<table style="width: 100%;" border="1">
<tbody>
<tr>
<td>Responsable:</td>
<td><select id="Responsables" name="responsables" ><option>Selectionnez --</option></select></td>
<td><input id="responsable" name="checkResp" type="checkbox" /> </td>
</tr>
<tr> <td><input type="submit" value="Afficher" id="ButtonSubmit"/></td>
<td><input class="button" id="ButtonReset" type="button" value="Annuler" /></td>
</tr>
</tbody>
そして私はそれを試してください:
public ActionResult Index( string responsables, bool checkResp)
{
Highcharts chart = new Highcharts("chart");
if (responsables != null)
{
if (checkResp)
chart = Global();
else
chart = Resp(responsables);
}
else
chart = Global();
return View(chart);
}
、しかしこのエラーがあります:
Param trecons une ent ue ent rieヌルヌルparamパラメータ"checkAct"ノンタイプNullable"System.Boolean"プール"System.Web.Mvc.ActionResult Index(System.String、System.String、Boolean)"dans"Project .Controllers.GrapheController"。パラメータの種類は、レフレンス型ではなく、NullableまたはNullable型ではありません。 Nom duparamètre:パラメーター
私を助けてください!
チェックボックスがオンの場合、ポストバック値には[InputName]=[InputValue]
という形式のキーと値のペアが含まれます
チェックボックスがチェックされていない場合、投稿されたフォームにはチェックボックスへの参照がまったく含まれていません。
これを知って、以下が機能します:
マークアップコードで:
<input id="responsable" name="checkResp" value="true" type="checkbox" />
そして、アクションメソッドのシグネチャ:
public ActionResult Index( string responsables, bool checkResp = false)
チェックボックスがチェックされると、ポストバックにcheckResp=true
が含まれ、チェックボックスがチェックされない場合、パラメーターはデフォルトでfalseになるため、これは機能します。
何らかの理由で、Mvc 5を使用してAndrewが手動でチェックボックスを作成する方法が機能しませんでした。代わりにこれを使用しました
@Html.CheckBox("checkResp")
コントローラでNiceを再生するチェックボックスを作成します。
フォームコレクションを使用してみてください
<input id="responsable" value="True" name="checkResp" type="checkbox" />
[HttpPost]
public ActionResult Index(FormCollection collection)
{
if(!string.IsNullOrEmpty(collection["checkResp"])
{
string checkResp=collection["checkResp"];
bool checkRespB=Convert.ToBoolean(checkResp);
}
}
以前のソリューションはどれもうまくいきませんでした。最後に、アクションは次のようにコーディングする必要があることがわかりました...
public ActionResult Index(string MyCheck = null)
そして、チェックされたとき、渡された値は「true」ではなく「on」でした。それ以外の場合は、常にnullです。
それがsomedbyに役立つことを願っています。
フォームを送信するときにMVTコントローラーで値を読み取って、非表示の入力を処理しない場合。できることは、value
属性をcheckbox
に追加して、true
またはfalse
に設定することです。
MVTはviewModelプロパティmyCheckbox
をここではtrueとして認識しません
<input type="checkbox" name="myCheckbox" checked="checked" />
しかし、あなたが追加する場合
<input type="checkbox" name="myCheckbox" checked="checked" value="true" />
それを行うスクリプト:
$(document).on("click", "[type='checkbox']", function(e) {
if (this.checked) {
$(this).attr("value", "true");
} else {
$(this).attr("value","false");}
});
public ActionResult Save(Director director)
{
// IsActive my model property same name give in cshtml
//IsActive <input type="checkbox" id="IsActive" checked="checked" value="true" name="IsActive"
if(ModelState.IsValid)
{
DirectorVM ODirectorVM = new DirectorVM();
ODirectorVM.SaveData(director);
return RedirectToAction("Display");
}
return RedirectToAction("Add");
}
特定のスタイルのチェックボックスを使用しようとしていたため、ほとんどのソリューションで問題が発生しました。値を収集し、それを保存するために必要な、リストから投稿するために送信するチェックボックスの値が必要でした。私はしばらくしてそれを回避することができました。
それが誰かを助けることを願っています。以下にコードを示します。
コントローラ:
[HttpGet]
public ActionResult Index(List<Model> ItemsModelList)
{
ItemsModelList = new List<Model>()
{
//example two values
//checkbox 1
new Model{ CheckBoxValue = true},
//checkbox 2
new Model{ CheckBoxValue = false}
};
return View(new ModelLists
{
List = ItemsModelList
});
}
[HttpPost]
public ActionResult Index(ModelLists ModelLists)
{
//Use a break point here to watch values
//Code... (save for example)
return RedirectToAction("Index", "Home");
}
モデル1:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace waCheckBoxWithModel.Models
{
public class Model
{
public bool CheckBoxValue { get; set; }
}
}
モデル2:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace waCheckBoxWithModel.Models
{
public class ModelLists
{
public List<Model> List { get; set; }
}
}
ビュー(インデックス):
@{
ViewBag.Title = "Index";
@model waCheckBoxWithModel.Models.ModelLists
}
<style>
.checkBox {
display: block;
position: relative;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* hide default checkbox*/
.checkBox input {
position: absolute;
opacity: 0;
cursor: pointer;
}
/* checkmark */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background: #fff;
border-radius: 4px;
border-width: 1px;
box-shadow: inset 0px 0px 10px #ccc;
}
/* On mouse-over change backgroundcolor */
.checkBox:hover input ~ .checkmark {
/*background-color: #ccc;*/
}
/* background effect */
.checkBox input:checked ~ .checkmark {
background-color: #fff;
}
/* checkmark (hide when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* show checkmark (checked) */
.checkBox input:checked ~ .checkmark:after {
display: block;
}
/* Style checkmark */
.checkBox .checkmark:after {
left: 9px;
top: 7px;
width: 5px;
height: 10px;
border: solid #1F4788;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
</style>
@using (Html.BeginForm())
{
<div>
@{
int cnt = Model.List.Count;
int i = 0;
}
@foreach (var item in Model.List)
{
{
if (cnt >= 1)
{ cnt--; }
}
@Html.Label("Example" + " " + (i + 1))
<br />
<label class="checkBox">
@Html.CheckBoxFor(m => Model.List[i].CheckBoxValue)
<span class="checkmark"></span>
</label>
{ i++;}
<br />
}
<br />
<input type="submit" value="Go to Post Index" />
</div>
}
このようにチェックボックスに値を設定します:
<input id="responsable" name="checkResp" value="true" type="checkbox" />
次のように、モデルのcheckRespをnullableプロパティに変更します。
public Nullable<bool> checkResp{ get; set; }
つかいます ? checkRespの前のように:
public ActionResult Index( string responsables, bool ? checkResp)
{
......
}
ビューを強く入力する必要があります。次に、これを行うことができます:
public class YourViewModel {
public bool ConditionaValue { get; set; }
}
ビューでは、このブール値にバインドするチェックボックスを作成できます。
@Html.CheckBoxFor(x => x.ConditionalValue)
チェックされている場合、モデルプロパティはtrueになります。
ただし、当面の問題については、アクションメソッドのパラメーターと同じ名前になるようにチェックボックスに名前を付ける必要があります。それらはbool
..でなければなりません.
MVCコントローラーメソッドの場合、null許容ブール型を使用します。
public ActionResult Index(string responsables、bool?checkResp){など}
チェックボックスがチェックされている場合、checkRespはtrueになります。そうでない場合、nullになります。
<form action="Save" method="post">
IsActive <input type="checkbox" id="IsActive" checked="checked" value="true" name="IsActive" />
</form>
public ActionResult Save(Director director)
{
// IsValid is my Director prop same name give
if(ModelState.IsValid)
{
DirectorVM ODirectorVM = new DirectorVM();
ODirectorVM.SaveData(director);
return RedirectToAction("Display");
}
return RedirectToAction("Add");
}