This question is locked. New answers and comments are not allowed.
Hello telerik!
I have another problem after installing the latest telerik version. I used a RowIsExpandedChanged to do some custom loading. My old code works like a charm:
public
void
Expanded(
object
o, RowEventArgs e)
{
var row = e.Row
as
GridViewRow;
if
(row ==
null
)
{
return
;
}
var vm = e.Row.Item
as
ItemViewModel;
if
(vm !=
null
)
{
// called with old telerik dlls
}
else
{
if
(vm ==
null
)
{
// now it will exit here!!!
return
;
}
}
After applying the Q2 Update e.Row.Item is always NULL!!!
What happened here? Any unknown breaking changes?
Thanks a lot,
Tim.