I have a RadGrid where each item has a NestedViewTemplate so that the user can click on a row and it will expand to show the details for that item. This was working fine for over a year, but recently I decided to update my controls to the current version (2009.1.527.35) and now, whenever I click on a row to expand it, then entire grid disappears and all I see is one horizontal line (could be the border?). I've tried debugging by putting a breakpoint in the ItemCommand method for that grid, but it never gets there. I have Ajaxified the grid, so I removed the Ajax to see if it was that, but it still does the same thing, even with a full postback.
This page happens to be the most complex page in my entire application. It includes a couple user controls and has code spread through several files including one Javascript file for client-side functions. So it would be difficult to reproduce this in a sample project. I did pull out the pertinent code and put it into a test page, but it worked fine in the test! I also removed the reference to the Javascript file, but it still does the same thing. If I had some idea of where to put a breakpoint, I'd be happy to debug it myself, but it doesn't seem to matter where I put it, it just doesn't touch the server-side code before it collapses into nothing...
UPDATE: Disregard, I just needed to add a NeedDataSource for the grid and everything's working now...
This page happens to be the most complex page in my entire application. It includes a couple user controls and has code spread through several files including one Javascript file for client-side functions. So it would be difficult to reproduce this in a sample project. I did pull out the pertinent code and put it into a test page, but it worked fine in the test! I also removed the reference to the Javascript file, but it still does the same thing. If I had some idea of where to put a breakpoint, I'd be happy to debug it myself, but it doesn't seem to matter where I put it, it just doesn't touch the server-side code before it collapses into nothing...
UPDATE: Disregard, I just needed to add a NeedDataSource for the grid and everything's working now...