I have css. But I don't know how to create a user control for this kind of display.

Title is the department name and the below mentioned radio buttons are statuses for each department. Now department can be multiple depending on the values in the database. This one box can contain only two department lists and the new box needs to be created as soon as 2 departments are filled into this.

How could I create user controls for this type to bind it to the datatable?

I am reading about DynamicDataField but it seems to be of no use.

alt text

Here fields encircled is department and its statuses

link|improve this question

feedback

1 Answer

is your problem solved? I did something like yours before, think you could try to do that using listview control.

link|improve this answer
@Gan: No my problem is still as it is. Although due to time boundation I did it in a bad way, by adding divs and other css along with adding radio buttons :( – Shantanu Gupta Aug 21 '10 at 15:20
I think ListView could solve your problem. By using listview, each circled item in your question is a ListViewItem. The items are in a group of two. Set the Listview's GroupItemCount property to 2, and specify the GroupTemplate to look like the big grey circle enclosing the two Department in your screenshot. Inside each of your ListViewItem / ItemTemplate, you can have a radiobuttongroup bound to a datasource conrtrol. Note that Listview is only available after .NET 3.5. Let me know if you need more info. :) – Gan Aug 23 '10 at 6:09
@Gan: After 3.5 means ? 4.0. Will try today – Shantanu Gupta Aug 24 '10 at 12:48
Yes, it is available in .NET 3.5, and in .NET 4.0 as well. Good luck to you, and hope to hear your progress soon. :) – Gan Aug 25 '10 at 1:53
btw, here's a link to the ListView web server control overview: msdn.microsoft.com/en-us/library/bb398790.aspx, just in case you need it :) – Gan Aug 25 '10 at 1:59
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.