views:

108

answers:

0

Hello, I was requested by a customer to build a grid that represents an ability matrix for actions. For example, each row represents a protocol, and each column represents an action that can be done on it. The grid should not be hard-coded - it should load the relevant actions for the protocols. Meaning, there could be a different amount of columns according to the protocols appearing in the rows. Additionally, each cell should contain a control that represents the ability (yes/no).

I searched for a code sample online for something similar but couldn't find it. Is there a good tutorial for DataGridView MVC (since i'm not gonna data bind exactly), and is there also a tutorial for creating an ability matrix GUI control?

Thanks!