In Code behind we have already a method which will sort the grid,when a user click on the header of the grid,as image is attached.
it create the script as
Now I have to make a function for mouse over in which a hand is appeared for the range of click.please give me idea
--------------------------------
Updated:
It is giving me the alert,hi i would adjust for the hand image onmouseover?
Code:
strHeaderCaption = "<div onmouseup=""igtbl_headerClickUp2(event,'ReportGrid1xgrdReport');"" style='width:" & (headerItem.Column.Width.Value - 3).ToString & "px;overflow:hidden;text-overflow:ellipsis;'><nobr>" & headerItem.Column.Header.Caption & "</nobr>" ..... strHeaderCaption = strHeaderCaption & "</div>"
Code:
<div onmouseup="igtbl_headerClickUp2(event,'ReportGrid1xgrdReport');" style='width:97px;overflow:hidden;text-overflow:ellipsis;'><nobr>Department</nobr></div>
Now I have to make a function for mouse over in which a hand is appeared for the range of click.please give me idea
--------------------------------
Updated:
Code:
<div onmouseup="igtbl_headerClickUp2(event,'ReportGrid1xgrdReport');"onmouserover="M1();" style='width:97px;overflow:hidden;text-overflow:ellipsis;'><nobr>Department</nobr></div> function M1() { ' alert('Do Something'); }
Comment