Which Telerik WinForm controls would you recommend I use to create the status board described below?
I want to show a scrum-like status board with four columns (e.g. Pending, In Progress, In Review, and Done). I'd like to show zero or more "cards" stacked vertically down from the top of each column. I'm imagining each card to be a user control with an aggregation of 4 or 5 rad controls, perhaps even resembling a small index card.
I'd like to bind the status board to a SQL view which contains a record for each "card" and a field on each record indicating the correct column for which that item belongs.
I am new to the Telerik controls, and trying to decide which of the many Telerik controls to use to build the status board. One idea is to have four single column grid controls side-by-side, each bound to the SQL View and filtered on the particular column. I used this approach in an MS Access prototype. Grid controls might be overkill, though. Perhaps side-by-side ListView controls might work if those allow embedded usercontrols. Or, you might have a much better idea, or point me to other posts that I missed.
Note that the entire status board will reside in a resizable panel in an Outlook style application. Your "OutlookTypeApp.sln" posted elsewhere (http://www.telerik.com/community/forums/winforms/general-discussions/which-controls-should-i-use-for-outlook-type-application.aspx) was very helpful!
Thank you for any help you can give in pointing me in the right direction.