Can you ignore/skip rows?(Implementing drill-down rows)
Can you ignore/skip rows?(Implementing drill-down rows)
I'm implementing drill-down rows, but can't use the technique outlined in http://www.datatables.net/blog/Drill-down_rows (using fnOpen, fnClose) as I need the drill-down rows to be in the DOM and not added/removed (ASP.NET MVC; they contain form elements against which I'm doing unobtrusive validation, and later posting back to the server).
So essentially what I have is this:
[code]
@for (var i = 0; i < Model.Count; i++)
{
some value
some value
some value
some drill down content
}
[/code]
Is there any way to have datatables keep all .drillDownRows in the table, but not try to parse them? Or another way to get this effect?
So essentially what I have is this:
[code]
@for (var i = 0; i < Model.Count; i++)
{
some value
some value
some value
some drill down content
}
[/code]
Is there any way to have datatables keep all .drillDownRows in the table, but not try to parse them? Or another way to get this effect?
This discussion has been closed.
Replies
Allan