Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
405
Creating empty column without model-relation with mvc
posted

Using MVC (Razor), how can I get in igGrid a empty column like:

{ headerText: "", key: "Delete", dataType: "string", width: "20%", unbound: true, template: "" }

Code from: http://www.igniteui.com/grid/column-template
 
 
What I need is something like this:

.Columns(column => {
column.For(x => x.ModelX1.First().ID).HeaderText("Meeting ID"));
column.For(" ... ")......);

column(" ... ")......);

});