Click here to Skip to main content
15,906,097 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Team ,

I have 1 problem with grid view control.

How to fix header of grid view when scroll-bar present


Please suggest answer......:)


Waiting replay.........!!!!!!!!!!:)
Posted

you Dont have any built in feature to do this you need to add a table and in that you need to add two rows one for headeer and another for grid and makinf the girdviews property to show header to false and allow scrollable.


<pre lang="HTML">
<table> 
<tr>
<td>
<!-- your grid header goes here -->

</td></tr>
<tr>
<td>
<!-- your grid content goes here. make your grid view show header property to false and allow scrollable to true-->
</td>
</tr>
</table>
 
Share this answer
 
Comments
Shrikant Mhaske 2-Jun-14 3:04am    
Thanks Bro

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900