I was wondering if it was possible to auto-scroll a specific column of cells (left to right) in a gridview in asp.net/c#.
I have a gridview filled from a database, and there's a column that can have certain cells anywhere from 1 character up to 100 characters. all other columns are pretty close in length (varying only 2-3 characters maximum). For this column right now, i have it doing this
<ItemTemplate>
<div style ="overflow: auto;">
<asp:Label ID="Label7" runat="server" Text='<%# Bind("[QA Msg]") %>' Width="100"></asp:Label>
</div>
</ItemTemplate>
Which is fine if somebody wants to view it themselves, but this is up on a display and both the database and this page are updated automatically, so automatically scrolling text in this column would be the best solution that I can think of. If anybody knows how I could do this, or has another solution (wrapping pushes some of the lower rows off the screen so that doesn't work) it would be appreciated.
Thank you!
EDIT: clarifying my question, Currently these gridview cells down this column have scroll-bars to manually scroll if necessary. I am looking for a way to make the text scroll through automatically on a loop (possibly with javascript?)