I've got a situation where a DataGrid is not showing one of the columns, and I can't figure out why. Here's a screenshot of my markup, and the actual file on GitHub:
Here's what it looks like when viewing the page. The third column where edit controls should be isn't showing. Can anyone tell me why? I tried removing all the width attributes in the columns, but this had no effect.
Hi @adamfoneil
Could be your first two column widths add up to 100%
Regards
Paul
Thank you @Paul_Ruston. I considered that. I tried removing all the column width attributes, and this had no effect
Turned out the solution was to use RadzenGrid not RadzenDataGrid
See commit if interested.
Hi @adamfoneil
Now you've posted this reply, I can see the error. It should still work with a RadzenDataGrid. In your first post, your third column has been declared as RadzenGridColumn. It should have been RadzenDataGridColumn same as the first two.
Regards
Paul
Yep, I looked again and just saw that! I had the wrong column type all along. ugh!!!! lol