Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Jim Mitchell #1
Can I add tooltiptext to a select button in a datagrd?
Can I add tooltiptext to a select button in a datagrid?
Jim Mitchell Guest
-
Select button in datagrid
I have created a datagrid with a select button so that a user can select a particular row. I did this by setting the CommandName="select". And... -
DataGrid Select Button Event not fired
hi all, i am creating datagrid , i have added button column in my datagrid ,but the event for button column is not fired. i have added... -
datagrid select button
not sure whats happening here - i basically cutnpasted the code from a page that this code works on but the select button is just not firing any... -
How to select a button in a matrix of push button (Cocoa) ?
The radion button was created with Interface Builder. How to make a default (selected) button in this matrix ? -
Button Select Column
I put a select button in a datagrid, select a row works fine. Now hold down the shift key and select a second row, get jscript error. Is there... -
Stevie_mac #2
Re: Can I add tooltiptext to a select button in a datagrd?
Yes, in ItemDataBound, get a reference to the button & just do it!
Dim b as Button
b = CType(e.Item.Cells(0).Controls(1), Button)
b.ToolTip = "Tooltip created at " & Now.ToString()
Sample assumes button is in 1st column & is 2nd item in column (as a button
would be in a tempate column since it gets wrapped in a 'literal' (ie DIV))
"Jim Mitchell" <jim_mitchell@mindspring.com> wrote in message
news:upAujwSaDHA.2344@TK2MSFTNGP09.phx.gbl...> Can I add tooltiptext to a select button in a datagrid?
>
>
Stevie_mac Guest
-
Saravana #3
Re: Can I add tooltiptext to a select button in a datagrd?
Check out this article, here i have given tooltip for header. You can use
the same concept to set the tooltip for select button.
[url]http://www.extremeexperts.com/Net/CodeSnippets/ToolTipForDataGridHeader.aspx[/url]
Saravana
Microsoft India Community Star,MC**
[url]www.extremeexperts.com[/url]
"Jim Mitchell" <jim_mitchell@mindspring.com> wrote in message
news:upAujwSaDHA.2344@TK2MSFTNGP09.phx.gbl...> Can I add tooltiptext to a select button in a datagrid?
>
>
Saravana Guest



Reply With Quote

