How to know if there is some data to be scrolled in Quantum Grid 5? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:31:14Zhttp://stackoverflow.com/feeds/question/537967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/537967/how-to-know-if-there-is-some-data-to-be-scrolled-in-quantum-grid-50How to know if there is some data to be scrolled in Quantum Grid 5?Rafael Romão2009-02-11T17:52:25Z2009-04-15T17:44:01Z
<p>I'm working in a legacy project, in Delphi 7, which uses the Express Quantum Grid 5, from DevExpress.</p>
<p>My grid cannot show scroll bars, so I have an external navigator to control the scrolling.</p>
<p>I can scroll using the <code>GridView.Site.ScrollContent(ADirection)</code> method, but I don't know how to identify if there is some data to be scrolled in any one of the four directions (Up, Down, Left and Right).</p>
<p>I need to know this to be able to disable the navigation buttons when no navigation is needed.</p>
<p>Do anybody know any solution or workaround for this problem? I could not find any method in the grid or its parts that can give me this information.</p>
http://stackoverflow.com/questions/537967/how-to-know-if-there-is-some-data-to-be-scrolled-in-quantum-grid-5/541274#5412741Answer by Rafael Romão for How to know if there is some data to be scrolled in Quantum Grid 5?Rafael Romão2009-02-12T13:43:30Z2009-02-12T13:43:30Z<p>I found a solution...</p>
<p>As we bought the source code of the component, we make some changes on it when necessary.</p>
<p>In this case, I found a protected method named <code>CanScrollData(ADirection)</code> in the <code>controller</code> used by the gridview. All I needed to do was to make this method public and then use it.</p>
<pre><code>Boolean canScrollLeft := Grid.ActiveView.Controller.CanScrollData(dirLeft)</code></pre>