10595 : How can I put a scrollbarcolumn in my grid on gantt_asp?

Question

I’m using GTP_asp in web.
How can I put a scrollbarcolumn in my grid on gantt_asp?

Answer

The Gantt supports paging that will split up long dataranges over several pages with page numbers at the bottom of the Gantt.

But if you do not want to page your data but rather scroll it you can do so by enclosing the Gantt_ASP in a scrolling div.

A scrolling div looks like this:

<div style=”border : solid 2px #ff0000; background : #000000; color : #ffffff; padding : 4px; width : 200px; height : 50px; overflow : auto; “>
<Gantt_ASP>
</div>

Leave a Reply