Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for yaninea

Hi! Does anyone knows how to add a radiobutton to a dynamic gridview that will be mutually exclusive? "In the GridView, the radio buttons cannot be grouped and therefore are not mutually exclusive. That is, an end user is able to select multiple radio buttons simultaneously from the GridView." One …

0
69
Member Avatar for dawsonz

Add a column in your grid with a button or an image button as is set on my example: [CODE] protected void ImageButton2_Click(object sender, ImageClickEventArgs e) { ImageButton Button1 = (ImageButton)sender; GridViewRow grdRow = (GridViewRow)Button1.Parent.Parent; DataSourceSelectArguments args = new DataSourceSelectArguments(); DataView view = (DataView)this.SqlDataSource2.Select(args); DataTable table = view.ToTable(); string id …

Member Avatar for yaninea
0
190
Member Avatar for samudebr

Hi, I have a similar situation only I donĀ“t want to do it trough a class, how can I make it so the treeview will load up directly from the db? The fields on my db are basically the same as posted from samudebr Thanks very much, I will really …

Member Avatar for yaninea
1
2K
Member Avatar for yaninea

Hi everyone, I was wondering how to build a treeview from a table in my db witch has the followings fields: RowId, NodeName, ParentNodeId. I will appreciate any help please.

Member Avatar for JerryShaw
0
123

The End.