S
SStory
How can I get the select link button to select one item and unselect all the
rest????
Like radio buttons?
Thanks,
Shane
rest????
Like radio buttons?
Thanks,
Shane
Scott M. said:The selected item color can be set at design-time through the property of
the selectedItem template. Changing the grid's selected item to show in
that color is about the only functionality that the grid does without any
code needed. You may want to make sure that your grid.DataBind call is only
being done on secondary page loads:
Sub Page_Load()
If Not IsPostBack()
grid.DataBind()
End If
End Sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.