I have an intersting question. I'm going to use Razor in my asp.net mvc site. I need to create a grid column with render action. But how can I do it?

Here is the code:

@{
  Html.Grid(Model).Columns(column =>
  {
     column.For(x => x.DeviceId).Named("Action").Action(data => { @* what to place here? *@ });
  }
}

I cannot to close the code block with '}' because it just will close the body of inline expression:

 column.For(x => x.DeviceId).Named("Action").Action(data => {} @* what to place here? *@ @{}

So, is it possible to solve this problem?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Solved. I can use this: column.For(x => Html.Partial("MyGridButtons", x)).Named("Action");

link|improve this answer
No solution for action ? – Dragouf Jan 18 '11 at 16:19
I didn't find any. – Сергій Jan 18 '11 at 16:26
it seems lambda expression can't be use with razor syntax? :s – Dragouf Jan 20 '11 at 10:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.