Categories | Question details Back To List | ||
Grid needs Horizontal splitAt method Right now we love the functionality that myGrid.splitAt(2) gives us. However, we can't seem to find a method that splits the grid in the other direction. Does their exist a method to split the grid horizontally? We could REALLY use this functionality if you have it. Thanks, Terbeaux333 Answer posted by Support on Aug 26, 2009 07:35 There is no such methos, but pro version allows to use attachFooter and attachHeader to add extra rows in header and footer sections - this can be used to create some extra non-scrollable rows Answer posted by Terbeaux333 on Aug 26, 2009 08:08 We found a work-around that mostly solves our problem. We discovered we could do the following... mygrid.attachHeader("#text_filter,#select_filter,#numeric_filter,<div class='hdrImgContent'><img src='images/ArrowsAndBarsLegend1.png' alt='Timeline Ruler'/></div>"); Turned out very nice and allows us to maintain the legend image while the user scrolls in the table. Terbeaux333 |