Generating one new field in table (ASP.NET MVC) - asp.net

I have View where I create interview with greeting and details
Here is table
CREATE TABLE [dbo].[Interviews] (
[Interview_Id] INT IDENTITY (1, 1) NOT NULL,
[Greeting] NVARCHAR (MAX) NULL,
[Detail] NVARCHAR (MAX) NULL,
[VacancyId] INT NULL,
PRIMARY KEY CLUSTERED ([Interview_Id] ASC),
CONSTRAINT [FK_Interviews_ToTable] FOREIGN KEY ([VacancyId]) REFERENCES [dbo].[Vacancies] ([VacancyId]) ON DELETE CASCADE
);
Here is my controller for this View
// Страница ввода приветствия и описания вакансии
[HttpGet]
public ActionResult WelcomeScreen()
{
// Формируем список команд для передачи в представление
SelectList teams = new SelectList(db.Vacancy, "VacancyId", "VacancyName");
ViewBag.Teams = teams;
return View();
}
//Заносим инфу о вакансии в таблицу
[HttpPost]
public ActionResult WelcomeScreen(Interview interview)
{
db.Interview.Add(interview);
db.SaveChanges();
//Int32 id = interview.Interview_Id;
//TempData["id"] = id;
return RedirectToAction("Index", "Questions", new { id = interview.Interview_Id });
}
Here is my View
#using (Html.BeginForm())
{
<div class="outer-div">
<div class="inner-div">
<div class="right-welcome-div">
<div class="right-grid-in-grid">
<div class="col-md-10">
#Html.DropDownListFor(model => model.Vacancy.VacancyId, ViewBag.Teams as SelectList, new { #class = "greeting" })
#Html.ValidationMessageFor(model => model.VacancyId, "", new { #class = "text-danger" })
</div>
</div>
<div class="main-left-div">
<div style="margin-left: 40px">
#Html.EditorFor(model => model.Greeting, new {htmlAttributes = new {#class = "greeting", data_bind = "textInput: Greeting", placeholder = "Приветствие", id="Greeting"}})
</div>
#Html.TextAreaFor(model => model.Detail, new { #class = "greeting2", data_bind = "textInput: Detail" })
</div>
</div>
<div class="left-welcome-div">
<div class="text-div" style="padding-top: 30px; word-break: break-all;">
<p style="font-size: 20px; margin-top: 20px; padding-left: 30px; padding-right: 40px; text-align: center;"><b><span data-bind="text: Greeting"/></b>
</p>
<p style="font-size: 20px; margin-top: 40px; padding-left: 30px; padding-right: 40px; text-align: center;"><span data-bind="text: Detail"/>
</p>
</div>
<div class="button-div" style="padding-top: 40px;">
<input style="float: right; margin-right: 30px; margin-top: 20px; border-radius: 12px; width: 200px;" type="submit" value="Создать" class="btn btn-default" />
</div>
</div>
</div>
</div>
<script type="text/javascript">
function ViewModel() {
this.Greeting = ko.observable('');
this.Detail = ko.observable('');
};
var vm = new ViewModel();
ko.applyBindings(vm);
</script>
}
When I click submit button it creates new empty row in Vacancies table.
I don't understand, why??
Why so?

Because you generate dropDownList with name Vacancy.VacancyId according the following code an it will create a instance of Vacancy in property of Interview and When you add Interview in dbContext, EF will create new row for Vacancy because interview.Vacancy is not null.
#Html.DropDownListFor(model => model.Vacancy.VacancyId, ViewBag.Teams as SelectList, new { #class = "greeting" })
Replace the code with this
#Html.DropDownListFor(model => model.VacancyId, ViewBag.Teams as SelectList, new { #class = "greeting" })

Related

MVC validation only border highlight without text error message

Hello I would like to only highlight the border of the text box without any error message near it, I have tried the following, but it still adds a span tag, can I avoid adding a span tag? Thank you!
[Required(ErrorMessage = " ")]
[Display(Name = "Email")]
public string Email { get; set; }
view
#using (Html.BeginForm("Login", "Account", new {
ReturnUrl = ViewBag.ReturnUrl
}, FormMethod.Post, new {
#class = "navbar-form navbar-nav",
id = "userForm"
})) {
#Html.AntiForgeryToken()
<div class="form-group">
#Html.ValidationMessageFor(m => m.Email, "", new {
#class = "text-danger"
})
#Html.TextBoxFor(m => m.Email, new {
#class = "form-control input-sm",
#placeholder = "Email"
})
</div>
<div class="form-group">
#Html.ValidationMessageFor(m => m.Password, "", new {
#class = "text-danger"
}) #Html.PasswordFor(m => m.Password, new {
#class = "form-control input-sm",
#placeholder = "Password"
})
</div>
<input type="submit" value="Log in" class="btn btn-sm btnMain"/>
}
Before
1
After
2
Edit: Added view.
Decorate your Validation Summary with a class and add the style display:none; for that in CSS:
in View:
#Html.ValidationSummary("", new { #class = "text-danger hidevalidation" })
in CSS:
.text-danger .hidevalidation{
display:none;
}
What have worked for me is adding another class to ValidationMessageFor in order to disable the text message only in certain locations.
New view:
#using (Html.BeginForm("Login", "Account", new {
ReturnUrl = ViewBag.ReturnUrl
}, FormMethod.Post, new {
#class = "navbar-form navbar-nav",
id = "userForm"
})) {
#Html.AntiForgeryToken()
<div class="form-group">
#Html.ValidationMessageFor(m => m.Email, "", new {
#class = "text-danger nav-text-danger"
})
#Html.TextBoxFor(m => m.Email, new {
#class = "form-control input-sm",
#placeholder = "Email"
})
</div>
<div class="form-group">
#Html.ValidationMessageFor(m => m.Password, "", new {
#class = "text-danger nav-text-danger"
}) #Html.PasswordFor(m => m.Password, new {
#class = "form-control input-sm",
#placeholder = "Password"
})
</div>
<input type="submit" value="Log in" class="btn btn-sm btnMain"/>
}
They newly added class:
.nav-text-danger { display: none; }
in order to add the red border I have added/modified the following CSS class:
.input-validation-error { border: 2px solid #ff0000 !important; }
Special thanks to #stephen-muecke for helping me with this one

Bootstrap MVC 4 TextBoxFor Required indicator

I am totally confused. I have 6 inputs on a page for a signup page. Three of the boxes have the required indicator in the right side of the box the other three do not. All 6 fields are required in code.
I have looked through the code and either MVC is adding a background image or Bootstrap is.
Here is the Razor code I am using.
<div class="row ">
<div class="col-md-6">
<div class="row">
#Html.TextBoxFor(m => m.currentUser.UserName, new { #class = "form-control", placeholder = "user name", tabindex = 1 })
</div>
<div class="row">
#Html.PasswordFor(m => m.currentUser.Password, new { #class = "form-control", placeholder = "password", tabindex = 3 })
</div>
<div class="row">
#Html.TextBoxFor(m => m.currentUser.LastName, new { #class = "form-control", placeholder = "last name", tabindex = 6 })
</div>
</div>
<div class="col-md-6">
<div class="row">
#Html.TextBoxFor(m => m.currentUser.EmailAddress, new { #class = "form-control", placeholder = "email address", tabindex = 2 })
</div>
<div class="row">
#Html.PasswordFor(m => m.confrimPassword, new { #class = "form-control", placeholder = "confirm password", tabindex = 4 })
</div>
<div class="row">
#Html.TextBoxFor(m => m.currentUser.FirstName, new { #class = "form-control", placeholder = "first name", tabindex = 5 })
</div>
</div>
</div>
I dont have much experience with Bootstrap so I am not sure if that is what is causing the issue or if MVC is.
Any help is appreciated.
Here is the model class:
public class User
{
public int ID { get; set; }
[Required(ErrorMessage = "Please enter a User Name.")]
public string UserName { get; set; }
[Required(ErrorMessage = "Please enter a password")]
public string Password { get; set; }
[Required(ErrorMessage = "Please enter your first name.")]
public string FirstName { get; set; }
[Required(ErrorMessage = "Please enter your last name.")]
public string LastName { get; set; }
[Required(ErrorMessage = "Please enter an email address.")]
public string EmailAddress { get; set; }
}
here is the generated code for an input that has the indicator:
<input class="form-control" data-val="true" data-val-required="Please enter a password" id="currentUser_Password" name="currentUser.Password" placeholder="password" tabindex="3" type="password" autocomplete="off" keyev="true" clickev="true" style="background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QsPDhss3LcOZQAAAU5JREFUOMvdkzFLA0EQhd/bO7iIYmklaCUopLAQA6KNaawt9BeIgnUwLHPJRchfEBR7CyGWgiDY2SlIQBT/gDaCoGDudiy8SLwkBiwz1c7y+GZ25i0wnFEqlSZFZKGdi8iiiOR7aU32QkR2c7ncPcljAARAkgckb8IwrGf1fg/oJ8lRAHkR2VDVmOQ8AKjqY1bMHgCGYXhFchnAg6omJGcBXEZRtNoXYK2dMsaMt1qtD9/3p40x5yS9tHICYF1Vn0mOxXH8Uq/Xb389wff9PQDbQRB0t/QNOiPZ1h4B2MoO0fxnYz8dOOcOVbWhqq8kJzzPa3RAXZIkawCenHMjJN/+GiIqlcoFgKKq3pEMAMwAuCa5VK1W3SAfbAIopum+cy5KzwXn3M5AI6XVYlVt1mq1U8/zTlS1CeC9j2+6o1wuz1lrVzpWXLDWTg3pz/0CQnd2Jos49xUAAAAASUVORK5CYII=); padding-right: 0px; background-attachment: scroll; cursor: auto; background-position: 100% 50%; background-repeat: no-repeat no-repeat;">
The really weird part is I discovered that they show up in Chrome but not Firefox.
#nemesv - you were exactly right. LastPass is one of the extensions I had installed in Chrome. Once I disabled it the icons were removed. Pulled my hair out for days trying to figure that one out.

how to expand the size of the DataType.MultilineText

I have define the following on my Model class:-
[DataType(DataType.MultilineText)]
public string Description { get; set; }
On the view I have the following:-
<span class="f"> Description :- </span>
#Html.EditorFor(model => model.Description)
#Html.ValidationMessageFor(model => model.Description)
now the output will be a small text area, but it will not show all the text . so how I can control the size of the DataType.MultilineText ?
:::EDIT:::
I have added the following to the CSS file:-
.f {
font-weight:bold;
color:#000000;
}
.f textarea {
width: 850px;
height: 700px;
}
And I have defined this :-
<div >
<span class="f"> Description :- </span>
#Html.TextArea("Description")
#Html.ValidationMessageFor(model => model.Description)
</div>
But nothing actually changed regarding the multi-line display.
This worked for me, with DataType set to MultilineText in the model:
[DataType(DataType.MultilineText)]
public string Description { get; set; }
And in the View specifying the HTML attribute "rows":
#Html.EditorFor(model => model.Description, new { htmlAttributes = new { rows = "4" } })
Generates HTML like that:
<textarea ... rows="4"></textarea>
A text area with 4 rows.
so how I can control the size of the DataType.MultilineText ?
You could define a class to the textarea:
#Html.TextArea("Description", new { #class = "mytextarea" })
and then in your CSS file:
.mytextarea {
width: 850px;
height: 700px;
}

Parsing error with HTML.Raw and li?

I have the following code in my ASP.NET MVC website :
#foreach (var item in Model.Comments.Where(c=>c.CommentId == Model.CurrentNode))
{
if(Model.Level == 0){
#Html.Raw("<li style=\"border:none;\">")
}
else
{
#Html.Raw("<li>")
}
When trying to visit this page I get the following exception :
Parser Error Message: Encountered end tag "li" with no matching start tag. Are your start/end tags properly balanced?
I have tried alot of diffrent options but can´t get this to work.
EDIT 1:
#if (!Model.CurrentNode.HasValue)
{
#Html.Raw("<div class=\"comment-root\" id=\"comment-root\">")
#*hid911 Tells what voteKey to use for this section*#
<input pid="hidVoteKey" type="hidden" value="1" />
}
<ul class="commentList sub">
#foreach (var item in Model.Comments.Where(c=>c.CommentId == Model.CurrentNode))
{
if(Model.Level == 0){
<li style="border:none;">
}
else
{
<li>
}
#if(!item.Deleted)
{
<div class="commentBack">
#if (Request.IsAuthenticated && uFeed.Handlers.AccountHandler.UserContextInstance.Id != item.CreatedBy.Id)
{
#Html.Partial("VotePartial", item.VoteViewModel)
}
else
{
<div style="float:left; width: 30px; "> </div>
}
<div class ="floatLeft" style="width: 90%">
<div class="CommentHeader" id="commentHeader-#item.Id">
<p class="Timestamp dimText">
#Html.ActionLink(item.CreatedBy.Text, "User/" + item.CreatedBy.Text, "Post")
| #item.VoteBalance poäng |
#Html.GetDisplayDate(item.CreatedDate)
</p>
</div>
<div id="commenttext-#item.Id" class="commentText">
#item.Text
</div>
<div id="comment-#item.Id" class="CommentFooter">
#if (Request.IsAuthenticated)
{
<div class="floatLeft">
#Html.ActionLink("Svara", string.Empty, null, new { id= "respond-" + item.Id, href = "#comment", #class = "respond" })
</div>
}
#if (Request.IsAuthenticated && uFeed.Handlers.AccountHandler.UserContextInstance.Id ==item.CreatedBy.Id)
{
<div class="floatLeft" id="divremove-#item.Id">
- #Html.ActionLink("Editera", string.Empty, null, new { id= "edit-" + item.Id, href = "#comment", #class = "edit" })
- #Html.ActionLink("Ta bort", string.Empty, null, new { id="remove-"+item.Id, #class = "remove"})
</div>
<div class="floatLeft hidden" id="divconfirmremove-#item.Id"> - Ta bort?
#Html.ActionLink("Ja", string.Empty, null, new { id = "confirm-remove-yes-" + item.Id, #class = "confirm-remove-yes" })
/
#Html.ActionLink("Nej", string.Empty, null, new { id = "confirm-remove-no-" + item.Id, #class = "confirm-remove-no" })
</div>
}
#if(Model.Comments.Any(c=>c.CommentId == item.Id))
{
#Html.Raw(" - ")
#Html.ActionLink("Dölj kommentarer", string.Empty, null, new { id = "toggle-" + item.Id, Href = "#togglecomments", #class = "toggle active" })
}
<div style="clear:both;"></div>
</div>
</div>
<div style="clear:both;"></div>
</div>
}
else
{
<div class="commentBack">
<div style="float:left; width: 30px; height: 30px"> </div>
<div style="float:left">
<div class="commentText" ><i>[Borttagen]</i></div>
<div id="comment-#item.Id" class="CommentFooter">
#if(Request.IsAuthenticated)
{
<div class="floatLeft">
#Html.ActionLink("Svara", string.Empty, null, new { id= "respond-" + item.Id, href = "#comment", #class = "respond" })
</div>
}
#if(Model.Comments.Any(c=>c.CommentId == item.Id))
{
#Html.Raw(" - ")
#Html.ActionLink("Dölj kommentarer", string.Empty, null, new { id = "toggle-" + item.Id, Href = "#togglecomments", #class = "toggle active" })
}
</div>
</div>
<div style="clear:both;"></div>
</div>
}
<div id="comments-for-#item.Id" class="CommentContainer">
#Html.Partial("CommentPartial", new uFeed.Views.ViewModels.CommentTreeItemViewModel(item.Id, Model.Comments, Model.Level + 1))
</div>
<div style="clear:both;"></div>
</li>
}
</ul>
You don't need the Html.Raw since you are not actually outputting a code variable that contains HTML. This should work just fine:
#foreach (var item in Model.Comments.Where(c=>c.CommentId == Model.CurrentNode))
{
if(Model.Level == 0){
<li style="border:none;">
}
else
{
<li>
}
You could probably simplify this even further...
#foreach (var item in Model.Comments.Where(c=>c.CommentId == Model.CurrentNode))
{
<li #(Model.Level == 0 ? "style=\"border:none;\"" : "")>

How to search a Telerik MVC Grid based on ASP.NET MVC 2.0's ListBox's selected Values?

I have a Telerik MVC Grid where there is a column Names , Gender , Age . I am going to use a ListBox which is bound to Gender ( coming from SQL 2k8 Table" Person". I am using Entity Framework, POCO classes , Repository Pattern ). Then there is a Image button as " Search " .
When a user selects few values from ListBox and then hits the " Search" Button Telerik MVC Grid which is on the same page ( I am rendering a User control which has actual Telerik MVC Grid) should be populated .
how to do this ? how to pass the selected ListBox values back to controller Action " SearchPerson" . There is a way of doing this using JQuery . But i dont know how to do this . Please help me
EDIT : Code
<% using (Ajax.BeginForm("SearchVouDate", "ERA", new AjaxOptions { UpdateTargetId = "ProfileList", LoadingElementId = "LoadingImage", OnSuccess = "ShowMessage" }))
{ %>
<div class="SelectNPI" >
<div class="DivSelectNPI">
<input name="selection1" value="NPI" id="rdNPI" type="radio" onclick="toggleLayer(this.checked);" />
<%:Html.Label(Resources.Strings.SelectNPI) %>
<div id="ERANPI" style="display: none;" >
<%:Html.ListBoxFor(m => m.Eras.NPI, new MultiSelectList(Model.GetERAs, "NPI", "NPI", Model.NPIListBox), new { ID="NPIList", style = "width: 160px; height:50px" })%>
</div>
</div>
<div class="SelectPIN">
<input name="selection1" type="radio" id="rdPIN" value="PIN" onclick="toggleLayer1(this.checked);" />
<%:Html.Label(Resources.Strings.SelectPIN) %>
<div id="ERAPIN" style="display: none;" >
<%:Html.ListBoxFor(m => m.Eras.PIN, new MultiSelectList(Model.GetERAs, "PIN", "PIN", Model.PINListBox), new {ID="PINList", style = "width: 180px; height:50px" })%>
</div>
</div>
</div>
<input type="submit" class="btnSearchSubmit" id="PaySearchDateSubmit" name="PaySearchDateSubmit" value="Search" />
</div>
</div>
<%} %>
<br /><br />
<div class="ERATopDiv" > <label id="Label1" class="lblSearchResult"> Search By Check Number</label> </div>
<br />
<div class="ERATopDiv"><label id="Label3" class="lblSearchResult" >Search Result</label> </div>
<div id="ProfileList">
<%Html.RenderPartial("SearchVoucherNum"); %>
</div>
<div id="results">
</div>
</div>
<div id="EraPopupWindow">
</div>
My Controller :
[HttpPost]
public ActionResult SearchVouDate(ERAViewModel era, FormCollection formValues)
{
try
{
if (formValues["Eras.NPI"] != null)
{
era.NPIListBox = formValues["Eras.NPI"].Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
string[] selectedNPI = era.NPIListBox;
ERAViewModel ervm = new ERAViewModel();
foreach (string NPI in selectedNPI)
{
ervm = this.WorkerService.SearchByNPI(formValues);
return PartialView("SearchVoucherNum", ervm);
}
}
else
{
ERAViewModel eras = this.WorkerService.SearchByPIN(era.Eras.PIN);
return PartialView("SearchVoucherNum", eras);
}
}
catch (Exception ex)
{
bool reThrow = ExceptionPolicyWrapper.HandleException(ex, ExceptionPolicies.MVCPolicy);
if (reThrow)
throw;
}
return null;
}
My PartialView which I am rendering on my main View ( Main View contains my ListBox and partialView contains my telerik MVC Grid )
<% Html.Telerik().Grid(Model.GetERAs)
.Name("ERA").TableHtmlAttributes(new { style = "height:20px" })
.Scrollable(scroll => scroll.Enabled(true))
.DataKeys(datakeys => datakeys.Add(m => m.EraId))
.Columns(columns =>
{
columns.Bound(m => m.NPI).Title(Resources.Strings.NPI).Width(150)
.HtmlAttributes(new { style = "text-align:center" })
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" });
columns.Bound(m => m.PIN).Title(Resources.Strings.PIN).Width(150)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.GroupName).Title(Resources.Strings.GroupName).Width(150)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.CheckNo).Title(Resources.Strings.CheckNo).Width(100)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.VoucherNo).Title(Resources.Strings.VoucherNo).Width(150)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.VoucherDate).Title(Resources.Strings.VoucherDate).Format("{0:dd/MM/yyyy}").Width(150)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.PaymentDate).Title(Resources.Strings.PaymentDate).Format("{0:dd/MM/yyyy}").Width(150)
.HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
.HtmlAttributes(new { style = "text-align:center" });
columns.Bound(m => m.NonHippaVoucherPath).Title(Resources.Strings.NonHippaVoucherPath).Width(150).Format(Ajax.ActionLink("View Non Hippa voucher", "GetPdffile", "ERA", new { Id = "{0}" }, new AjaxOptions() { UpdateTargetId = "EraPopupWindow", HttpMethod = "Get" }, new { Style = "color:#FF0070;" }).ToString().Replace("{", "{{").Replace("}", "}}")).Encoded(false);
columns.Bound(m => m.HippaVoucherPath).Title(Resources.Strings.HippaVoucherPath).Width(150).Format(Ajax.ActionLink("View Hippa voucher", "GetPdffile", "ERA", new { Id = "{0}" }, new AjaxOptions() { UpdateTargetId = "EraPopupWindow", HttpMethod = "Get" }, new { Style = "color:#FF0070;" }).ToString().Replace("{", "{{").Replace("}", "}}")).Encoded(false);
//columns.Bound(m => m.Non_hippa_voucher_path).HtmlAttributes("color:#8A2BE2").Format(Html.ActionLink("View Non Hippa voucher", "GetPdffile", "ERA", new { ID = "{0}" }, new { onclick = "return someFunction();", Style = "color:#8A2BE2" }).ToHtmlString()).Encoded(false).Title("").Width(150);
//columns.Bound(m => m.Hippa_voucher_path).HtmlAttributes("color:#8A2BE2").Format(Html.ActionLink("View Hippa voucher", "GetFile/", new { ID = "{0}", Style = "color:#8A2BE2" }, "ERA/").ToHtmlString()).Encoded(false).Title("").Width(150);
})
// .ClientEvents(clientEvents => clientEvents.OnDataBinding("dataBinding"))
.DataBinding(databinding => databinding.Ajax().Select("AjaxERA", "ERA"))
.EnableCustomBinding(true)
.Pageable(paging =>{paging.Enabled(true) ;paging.PageSize(5) ;})
.Sortable()
.Filterable()
.Footer(true)
.Render();
%>
The best way to do this is to use jQuery.
You need your listBox and to bind your grid in AJAX.
Here's some sample code I have in an application :
View
<div class="content-box-filter">
<label>Filter:</label>
<%= Html.DropDownList("Years", Model.Years) %>
</div>
<div class="content-box">
<div class="content-box-header">
<h3>News</h3></div>
<div class="content-box-content">
<%= Html.Telerik().Grid<News>()
.Name("Grid")
.Columns(colums =>
{
colums.Bound(c => c.Title).Title("Titre").ClientTemplate("<a href=\"" + Url.Action(MVC.News.Modifier()) + "/<#=IdValue#>\" ><#=Title#></a>");
colums.Bound(c => c.Title).Title("Inscriptions").ClientTemplate("<a href=\"" + Url.Action(MVC.News.Inscriptions()) + "/<#=IdValue#>\" >fichier excel</a>");
colums.Bound(c => c.Published).Title("Publiée").HeaderHtmlAttributes(new { #class = "center-text" }).HtmlAttributes(new { #class = "center-text" }).ClientTemplate("<img src=\"../Content/images/icons/<#=Published#>.png\" alt=\"<#=Published#>\" />");
colums.Bound(c => c.CreationDate).Title("Date").HeaderHtmlAttributes(new { #class = "center-text" }).HtmlAttributes(new { #class = "center-text" }).Format("{0:MM/dd/yyyy}");
colums.Bound(c => c.IdValue).Title(" ").HeaderHtmlAttributes(new { #class = "center-text" }).HtmlAttributes(new { #class = "center-text" }).ClientTemplate("<a href=\"" + Url.Action(MVC.News.Modifier()) + "/<#=IdValue#>\" title=\"Modifier\" ><img src=\"../Content/images/icons/pencil.png\" alt=\"Modifier\" /></a>");
colums.Bound(c => c.IdValue).Title(" ").HeaderHtmlAttributes(new { #class = "center-text" }).HtmlAttributes(new { #class = "center-text" }).Format("<a id=\"deleteLink{0}\" href=\"#\" title=\"Supprimer\" onclick=\"if(confirm('Voulez-vous vraiment supprimer cette nouvelle?')){ return deleteNews('{0}');} else { return false;};\"><img src=\"../Content/images/icons/cross.png\" alt=\"Supprimer\" /></a>");
})
.DataBinding(d => d.Ajax().Select("ListAjax", "News", new { year = DateTime.Now.Year }))
.Sortable()
%>
<%= Html.AntiForgeryToken() %>
</div>
</div>
<script type="text/javascript">
var token = $('[name=__RequestVerificationToken]').val();
$(document).ready(function() {
$('#Years').val(<%=DateTime.Now.Year%>);
$('#Years').change(function() {
var grid = $('#Grid').data('tGrid');
grid.rebind({ year: this.value });
});
});
function deleteNews(newsId) {
$.post('DeleteNews', { __RequestVerificationToken: token, id: newsId }, function(data) {
if (data == 'true') {
$('#deleteLink' + newsId).parent().parent().remove();
}
return false;
});
return false;
};
</script>
The NewsController action :
[GridAction]
public virtual ActionResult ListAjax(int year)
{
var gridModel = new GridModel<News>();
gridModel.Data = _newsRepo.GetByYear(year);
return View(gridModel);
}
Let me know if you still have question.

Resources