active questions tagged scrolling - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:49:37Z http://stackoverflow.com/feeds/tag/scrolling http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806669/vertical-scrollbar-in-clistctrl 0 Vertical Scrollbar in CListCtrl Smashery 2009-11-27T04:05:20Z 2009-11-27T09:59:50Z <p>I'm using a CListCtrl in Icon view, but it scrolls horizontally:</p> <pre><code>1 3 5 7 --&gt; 2 4 6 8 --&gt; </code></pre> <p>I'd rather it scroll horizontally:</p> <pre><code>1 2 3 4 5 6 | | V V </code></pre> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/1624594/scrolling-tabs-in-jquery 0 scrolling tabs in jQuery RayZ 2009-10-26T12:46:28Z 2009-11-27T06:31:18Z <p>Is there simple solution to build tabs with the scrolling tabs-pane in jQuery?</p> <p>Like ExtJS Advanced Tabs:</p> <p><a href="http://www.extjs.com/deploy/dev/examples/tabs/tabs-adv.html" rel="nofollow">http://www.extjs.com/deploy/dev/examples/tabs/tabs-adv.html</a></p> http://stackoverflow.com/questions/1548715/a-div-that-stays-at-the-top-while-a-web-page-scrolls 3 A DIV that stays at the top while a web page scrolls BahaiResearch.com 2009-10-10T18:37:08Z 2009-11-26T23:49:14Z <p>How would I have a DIV stay at the top of the page visually as the user scrolls down a web page?</p> <p>A simple Javascript framework would be great!</p> <p>it's for this web site: <a href="http://BiblePro.BibleOcean.com" rel="nofollow">http://BiblePro.BibleOcean.com</a> </p> http://stackoverflow.com/questions/1768391/how-to-detect-android-listview-scrolling-stopped 0 how to detect Android ListView Scrolling stopped? koji lin 2009-11-20T04:44:45Z 2009-11-25T22:06:54Z <p>Hi all, I'm trying to do something after scrolling stopped.So, I tried using OnScrollListener#onScrollStateChanged(SCROLL_STATE_IDLE) to detect when the scrolling stopped(either TOUCH_SCROLL or FLING)(at 1.5 it's runs as i expect). But when it runs on 2.0, onScrollStateChanged can't received the event after releasing the finger.Is there any callback or anyway to detect that event? </p> http://stackoverflow.com/questions/1787845/creative-way-to-display-tables-with-35-columns 3 Creative way to display tables with 35 columns Chris 2009-11-24T04:46:11Z 2009-11-25T19:37:02Z <p>I have a form where users are entering 35 different fields.</p> <p>I have a Content Management System where I want to display the results of an order on the form. </p> <p>I've thought about adding a horizontal scrollbar inside the table, or limiting the table to the 10 most important columns and then making it so the administrator has to click on an entry to view all of the information on its own details page.</p> <p>Do you know any creative ways that I can display the 35 fields on one page?</p> http://stackoverflow.com/questions/1475320/very-tricky-css-scrolling-question 3 Very Tricky CSS Scrolling Question Code Sherpa 2009-09-25T03:42:53Z 2009-11-25T19:00:19Z <p>Hi.</p> <p>I am not sure how to achieve a certain effect in CSS. I have the following HTML:</p> <pre><code>&lt;div id="container" name="container"&gt; &lt;div id="scroll" name="scroll"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>The scroller loads with one image inside the scroller which has a width: 715px;</p> <p>[ [1] ]</p> <p>When the user clicks on that image, a second image is dynamically appended to the first:</p> <p>[ [1] [2] ]</p> <p>And, when the second is clicked, the same thing happens (and so on):</p> <p>[ [1] [2] [3] ]</p> <p>Now, here is where I need some help. When the final visible image in the series is clicked on, the preceding images should scroll to the left to make room for the new one, putting the first out of view and placing the new image at the end as such:</p> <p>[ [2] [3] [4] ] <br> &lt;--------------></p> <p>This goes on indefinitely - each time the final image is clicked the preceding ones should scroll to the left, placing the new image at the right-most view within the DIV.</p> <p>[ [3] [4] [5] ] <br> &lt;--------------></p> <p>I have played with the below CSS (what you see is the state of my most recent attempt). What I have been able to achieve is:</p> <p>1) The images build consecutively and then overflow (to the right) when the fourth image exceeds the 715px mark. Not what I want. </p> <p>2) The below CSS "Does" do what I want (sort of) - it starts on the left of the DIV and then works to the 715px mark and starts to push the images (backwards) to the left and out of view - always leaving the most recent image to the far right of the DIV and in view. THE PROBLEM with this is that the order is FLIPPED (I think, due to RTL). I have tried to trick it with text-align:left but that doesn't seem to do anything. </p> <p>Any Ideas? Suggestions appreciated. Thanks.</p> <pre><code>#container { width: 715px; height: 228px; overflow: hidden; position:relative; / * text-align:left; */ } #scroll { height: 228px; white-space: nowrap; direction: rtl; /* text-align:left; */ } </code></pre> http://stackoverflow.com/questions/1798153/scrolling-problem-with-a-webbrowser-control-contained-in-a-panel-control 0 Scrolling problem with a WebBrowser control contained in a Panel control icancsharp 2009-11-25T16:27:24Z 2009-11-25T16:27:24Z <p>I have a .Net Panel control that contains a single child control that is a WebBrowser. I won't go into the reasons for me doing that, but it is related to printing out the control. The panel control has its AutoScroll property set to "true" and I am sizing the WebBrowser to fit its own content (by using the .Document.Body.ScrollRectangle.Size property of the WebBrowser when the NavigateComplete2 event fires). In this way, the scrollbar on the panel appears and you can scroll the panel up and down in order to be able to see the content of the WebBrowser.</p> <p>The problem is that when you scroll down to see what's at the bottom of the WebBrowser and then click on it (perhaps you click on a link in the html), the panel jumps back to the top and the link doesn't get actioned.</p> <p>Please can anyone help me to understand what's going on and how to get around this problem?</p> http://stackoverflow.com/questions/1080274/scroll-uitableview-so-that-the-header-isnt-visible 1 Scroll UITableView so that the header isn't visible DASKAjA 2009-07-03T17:33:11Z 2009-11-24T17:52:27Z <p>I've got a UITableView with a UISearchBar as the tableViews.tableHeaderView. Just like the new Mail.app, Notes.app, etc. in 3.0. I want to hide the SearchBar until the user drags it in his sight.</p> <p>My attempt only works when there're a couple of items in the tableView, so that the tableView actually wants to scroll. I call this in loadView:</p> <pre><code>NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; [self._tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO]; </code></pre> <p>Nevertheless it seems that Apple handles such a serachbar differently. After draging out the searchbar it doesn't seem to be bounded to the tablecells anymore (in Notes.app, not in Mail.app).</p> <p>But perhaps Apple has a distinct method for that new 3.0 behaviour, and I just can't find it?</p> http://stackoverflow.com/questions/1787729/how-do-i-make-this-menu-collapse-on-page-load 1 How do I make this menu collapse on page load? Josh 2009-11-24T04:14:09Z 2009-11-24T15:59:44Z <p>This is my code. How can I make this menu always be popped out, not just when you click on '#projects'? Change the .click function to what?</p> <pre><code>$(document).ready(function($) { </code></pre> <p>$.fn.longDropdown = function(options) { var opts = $.extend({}, $.fn.longDropdown.defaults, options);</p> <pre><code>// Weird bug to show the correct number of items opts.visible = (opts.visible + 1); return this.each(function() { // Add down arrow only to menu items with submenus // $(".dropdown &gt; li:has('ul')").each(function() { // $(this).find("a:first").append("&lt;img src='images/down-arrow.png' /&gt;"); // }); $(".dropdown &gt; li").click(function() { var $container = $(this), $list = $container.find('ul'), $anchor = $container.find('a'), height = $list.height() * 1.0, totalHeight = $container.height() * opts.visible, containerOffset = $container.offset().top + $container.height(), windowHeight = $(window).height(), maxHeight = windowHeight - containerOffset; if( totalHeight &gt; maxHeight ) { while( $container.height() * opts.visible &gt; maxHeight ) { opts.visible = (opts.visible - 1); } totalHeight = $container.height() * (opts.visible + 1); } var multiplier = height / totalHeight; // need to save height here so it can revert on mouseout $container.data("origHeight", $container.height()); // so it can retain it's rollover color all the while the dropdown is open $anchor.addClass("hover"); // make sure dropdown appears directly below parent list item $list .show() .css({ paddingTop: $container.data("origHeight") }); // don't do any animation if list shorter than max if (multiplier &gt; 1) { $container .css({ height: totalHeight, overflow: "hidden" }) .mousemove(function(e) { var offset = $container.offset(); var relativeY = ((e.pageY - offset.top) * (multiplier)) - ($container.data("origHeight") * multiplier); if (relativeY &gt; $container.data("origHeight")) { $list.css("top", -relativeY + $container.data("origHeight")); }; }); } }, function() { var $el = $(this); // put things back to normal $el .height($(this).data("origHeight")) .find("ul") .css({ top: 0 }) .hide() .end() .find("a") .removeClass("hover"); opts.visible = (opts.visible + 1); }) .filter(':has(ul)') .each(function() { $(this).find("a:first").append("&lt;img src='" + opts.image + "' /&gt;"); }); }); </code></pre> <p>};</p> <p>// default options $.fn.longDropdown.defaults = { visible: 4, image: 'images/down-arrow.png' };</p> <p>})(jQuery);</p> <p>Thank you.</p> http://stackoverflow.com/questions/1787282/javascript-highlight-a-row-when-i-scroll-up-down 1 JavaScript: Highlight a row when I scroll up/down TeddyH 2009-11-24T01:44:01Z 2009-11-24T04:37:44Z <p>On my web page, I a table inside a <code>DIV</code> that is scrollable.</p> <p>When I scroll down, I want to highlight the center most viewable row in my table.</p> <p>How would I do that?</p> <p>I found the following script that is close to what I desire --> www.rgagnon.com/jsdetails/js-0093.html</p> <p>But this works only on the <code>MouseOver</code> event. I want this to work on not just the MouseOver event but also when I simply scroll up/down.</p> http://stackoverflow.com/questions/1786811/change-mouse-scroll-to-not-zoom-in-expression-blend 0 Change mouse scroll to not zoom in Expression Blend? Simon 2009-11-23T23:32:40Z 2009-11-23T23:40:00Z <p>Is there a way to change the mouse wheel behavour in Expression Blend?</p> <p>I want it to scroll instead of zoom.</p> http://stackoverflow.com/questions/630519/can-you-make-vi-advance-the-screen-when-opened 2 Can you make vi "advance" the screen when opened? apinstein 2009-03-10T14:38:07Z 2009-11-23T15:24:21Z <p>I often work in vi, suspend vi, run something on the cli, and then fg back into vi to work on the results. For instance, fixing errors that showed up when I ran the cli command.</p> <p>However, when I fg vi, vi "wipes" the current terminal buffer and I can't see the "last screenful" of terminal output in the scrollback buffer.</p> <p>Is there some setting in vi (or screen, I use screen) which would help me here?</p> <p>I have searched google for a long time with no answers. I also realize that there are other workflows that solve this problem, but they aren't perfect (run from inside vi means no shell completion, etc).</p> <p>Thanks! Alan</p> http://stackoverflow.com/questions/1780722/horizontal-scrolling-div-with-images-wont-display-inline 0 Horizontal scrolling div with images won't display inline Johnny 2009-11-23T01:38:59Z 2009-11-23T02:20:17Z <p>I'm trying to create a div with a fixed size that contains images only. I'd like them to be the height of the div, display inline, and scroll through them horizontally. I'm having trouble making this work. I'd to do this as simply as possible. What am I missing?</p> http://stackoverflow.com/questions/1095042/div-positionabsolute-bottom-0-not-working-as-expected-in-ie7 0 <div> position:absolute; bottom: 0; not working as expected in IE7 Scott R 2009-07-07T21:42:11Z 2009-11-19T21:02:08Z <p>My site, a course catalog tool for universities, has a center pane that contains a dynamically updated list of classes. In Firefox, Opera, and Chrome, the center pane has the intended scrolling behavior: when the class list exceeds the height, the center pane has a scroll bar. IE, however, only shows this bar when the height is explicitly set. Without using JavaScript to reset the center pane height on resize, how can I force Internet Explorer to show the scroll bar?</p> <p>The center pane:</p> <pre><code>&lt;div id='middlenav'&gt; &lt;div id='middleheader'&gt;&lt;/div&gt; &lt;div id='courselist'&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>and its CSS:</p> <pre><code>div#middlenav { position: absolute; left: 250px; right: 350px; top: 0px; bottom: 0px; } div#courselist { overflow: auto; position: absolute; top: 55px; bottom: 0px; width: 100%; } </code></pre> <p>It looks like the center pane isn't obeying the bottom: 0px; statement, and is expanding to the full height of the contained #courselist. I tried body { height: 100% } but that didn't fix it.</p> <p>Thanks!</p> http://stackoverflow.com/questions/627645/mouse-scrollwheel-in-flash-flex-application 0 Mouse scrollwheel in Flash/Flex application Maksim 2009-03-09T19:23:16Z 2009-11-19T15:41:59Z <p>I'm building an application in Flex and I have few windows with scroll. When I'm trying to use mouse scrollwheel the window does not scroll up/down. Plus if it is possible to make the window to scroll up/down then is it possible to make to scroll right/left.</p> http://stackoverflow.com/questions/1216114/how-can-i-make-a-div-stick-to-the-top-of-the-screen-once-its-been-scrolled-to 1 how can I make a div stick to the top of the screen once it's been scrolled to? Evan Thompson 2009-08-01T07:54:31Z 2009-11-19T01:12:33Z <p>I would like to create a div, that is situated beneath a block of content but that once the page has been scrolled enough to contact it's top boundry, becomes fixed in place and scrolls with the page. I know I've seen at least one example of this online but I cannot remember it for the life of me.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1758096/how-can-i-make-my-text-stay-in-side-of-my-jquery-slider 0 How can I make my text stay in side of my JQuery slider Ralph The Mouf 2009-11-18T18:33:22Z 2009-11-18T18:35:27Z <p>Hi, I have tried everything as far as widths and margins. The problem is I have a background image and when I use a width that makes the text stay inside the slider during scroll, it cuts off my image. That being said, I have everything set to what I want, except the text issue: here is the CSS:</p> <pre><code>#wrapper { width: 550px; margin:0px auto; } #intro { padding-bottom: 10px; } h2 { margin: 0; margin-bottom: 14px; padding: 0; } #slider { width: 631px; margin: 0 auto; position: relative; } .scroll { height: 250px; width: 590px; overflow: auto; overflow-x: hidden; position: relative; clear: left; background: #FFFFFF url(images/CreamySliderNew.jpg)no-repeat; margin:0px auto 0px auto } .scrollContainer div.panel { padding: 20px; height: 210px; width: 560px; } #shade { background: #EDEDEC url(images/shade.jpg) no-repeat 0 0; height: 50px; } ul.navigation { list-style: none; margin: 0px 0px 0px 23px; padding: 0px; padding-bottom: 0px; } ul.navigation li { display: inline; margin-right: 5px; } ul.navigation li a { background:#FFFFFF; font-family:Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; color:#CCCCCC; padding:5px 5px 5px 5px; border:1px #F4F4F4 solid; text-decoration: none; } ul.navigation a:hover { color:#EDEDEC; border:1px #E6E6E6 solid } ul.navigation a.selected {color:#333333; } ul.navigation a:focus { outline: none; } .scrollButtons { position: absolute; top: 150px; cursor: pointer; } .scrollButtons.left { left: -32px; top:20px } .scrollButtons.right { right: -32px; top:20px; } .hide { display: none; } </code></pre> http://stackoverflow.com/questions/1439234/updatepanel-contol-and-moving-to-top-of-page 0 UpdatePanel contol and moving to top of page jumbojs 2009-09-17T14:26:13Z 2009-11-17T18:49:14Z <p>Hello</p> <p>I have an asp.net page that is using an UpdatePanel control. When you're on the page and you click the continue button, the page does a partial refresh and you're left in the same scroll position you were before the refresh. How do I ensure that on partial refreshes with the UpdatePanel control that you return to the top of the page.</p> <p>thanks</p> http://stackoverflow.com/questions/1749345/flex-make-advanced-data-grid-height-of-rows 0 Flex: Make advanced data grid height of rows? John Isaacks 2009-11-17T14:42:25Z 2009-11-17T15:36:25Z <p>I have an ADG along with some other components in a VBox. The number of rows of items in the ADG is variable. I want the height of the ADG to be however tall it needs to be to show all the rows without scrolling. This is because I want the containing VBox to handle all the scrolling. </p> <p>The reason being, is because sometimes there is a horizontal scroll bar on the VBox, in this case you have to scroll all the way to the right to reveal the scroll bar for the ADG before you can scroll the ADG.</p> <p>So is there a way to do this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1739682/jquery-scrollto-and-serial-scroll-not-working-together 1 jQuery - ScrollTo and Serial Scroll not working together Nic Hubbard 2009-11-16T02:07:16Z 2009-11-16T09:02:25Z <p>I have tested the scrollTo() plugin, but I need a way to stop the scrolling animation, so I am looking at serialScroll().</p> <p>Here is what I used with scrollTo:</p> <pre><code>$('#scroller').scrollTo('1000px', 3000); </code></pre> <p>My question is, how do I do this same thing with serialScroll? I can't get it to work the same way as scrollTo, isn't that what it is suppose to do, just add tons of extra options?!</p> http://stackoverflow.com/questions/1740095/css-problem-with-overflow-width-div-part-2 0 CSS Problem with Overflow width div Part 2 Gino 2009-11-16T04:44:41Z 2009-11-16T06:49:16Z <p>Hi everyone, </p> <p>Related to this post</p> <p>stackoverflow.com/questions/1736910/css-problem-with-overflow-with-div</p> <p>The awser helped me ie: adding display: inline; i wanted to add some div into the div ".div-image" for title and description: i found that it worked if i replace display: inline; with display: inline-block; but guess what, it doesn't work with IE <a href="http://www.starsclips.com/testscripts/test-css-overfloat1.html" rel="nofollow">Example only working with Firefox</a></p> <p>Can someone have a idea what i should do for my horizontal scrolling div to work with IE to Thank's for your help</p> http://stackoverflow.com/questions/1725602/iphone-uitableview-cells-getting-stuck-and-mixed-up-with-fast-scrolling 0 IPhone UITableView cells getting 'stuck' and mixed up with fast scrolling Tom 2009-11-12T21:38:35Z 2009-11-12T23:12:06Z <p>Hi all, Based on Apple's TableViewSuite sample project (<a href="http://developer.apple.com/iphone/library/samplecode/TableViewSuite/index.html" rel="nofollow">http://developer.apple.com/iphone/library/samplecode/TableViewSuite/index.html</a>) I've taken the structure of number 5 there, to create custom drawn table cells. This is working great, and scrolling speed is fantastic now compared to when I was using nibs. </p> <p>It has however introduced one bug that I can't figure out - if I scroll rapidly around on the screen, the cell contents seems to get mixed up and cells will be displaying content which should appear in another cell. Sometimes multiple cells will even display the same content. If I then tap and hold on the cell as if I was selecting it, it refreshes to the correct content again. I've verified that the correct cell is being passed the correct data from the array in the table's viewcontroller, so I'm guessing it's some graphical glitch. </p> <p>Any help would be great, I can't work out what I've done different to the samples. Relevant code below:</p> <p><strong>View Controller cellforrowatindexpath</strong> <pre><code> static NSString *CellIdentifier = @"FacilityCell"; StoreDetailFacilityCell *cell = (StoreDetailFacilityCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[StoreDetailFacilityCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease]; } [cell configureCell:[storeFacilities objectAtIndex:indexPath.row] atRow:indexPath]; return cell; </pre></code></p> <p><strong>StoreDetailFacilityCell.m</strong> <pre><code> @implementation StoreDetailFacilityCell @synthesize storeDetailFacilityCellView;</p> <p>-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { if (self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier]) { CGRect tzvFrame = CGRectMake(0.0, 0.0, self.contentView.bounds.size.width, self.contentView.bounds.size.height); storeDetailFacilityCellView = [[StoreDetailFacilityCellView alloc] initWithFrame:tzvFrame]; [self.contentView addSubview:storeDetailFacilityCellView]; } return self; }</p> <p>-(void)configureCell:(NSDictionary *)storeFacility atRow:(NSIndexPath *)row { NSLog([NSString stringWithFormat:@"updating %@ at row %i",[storeFacility objectForKey:@"facilityKey"],row.row]); storeDetailFacilityCellView.storeFacility = storeFacility; } -(void)redisplay { [storeDetailFacilityCellView setNeedsDisplay]; } -(void)dealloc { [storeDetailFacilityCellView release]; [super dealloc]; } </pre></code></p> <p><strong>StoreDetailFacilityCellView.m</strong> <pre><code> @implementation StoreDetailFacilityCellView</p> <p>@synthesize highlighted; @synthesize editing; @synthesize storeFacility;</p> <p>-(id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { self.opaque = NO; self.backgroundColor = [UIColor clearColor]; } return self; }</p> <p>-(void)setHighlighted:(BOOL)lit { if (highlighted != lit) { highlighted = lit;<br> [self setNeedsDisplay]; } } -(void)drawRect:(CGRect)rect { UIColor *mainTextColor = nil; UIFont *mainFont = [UIFont systemFontOfSize:14]; if (self.highlighted) { mainTextColor = [UIColor whiteColor]; } else { mainTextColor = [UIColor blackColor]; } if (!self.editing) { CGPoint point; [mainTextColor set]; point = CGPointMake(80, 9); [[storeFacility objectForKey:@"facilityTitle"] drawAtPoint:point withFont:mainFont]; } }</p> <p>-(void)dealloc { [storeFacility release]; [super dealloc]; } </pre></code></p> http://stackoverflow.com/questions/1718226/displaying-news-with-javascript 0 displaying news with javascript Daniel 2009-11-11T21:31:03Z 2009-11-12T18:44:50Z <p>I keep coming up against this issue. Displaying news on a website. And I'd like to come up with a solution to use like a template, something I can just drop on a site easily.</p> <p>The solution I keep seeing is an iframe with javascript to scroll the content. However, I'm really opposed to the idea of using iframes, I think the time for those has passed.</p> <p>I want to use JS without a framework, because it disallows using other frameworks. Does anyone know where I could find something robust?</p> <p>(<em>I'm thinking of using vertical scrolling, but I'm also curious about other solutions</em>)</p> http://stackoverflow.com/questions/1096618/android-surfaceview-scrolling 0 Android SurfaceView scrolling Lee 2009-07-08T07:33:43Z 2009-11-12T16:13:11Z <p>I'm writing an android application that builds an offscreen bitmap that is (say) 640*480 pixels and displays that in a SurfaceView. Note that the size of the image is larger than the actual display on the handset.</p> <p>The way that the application works is that it initially displays the upper left corner (0,0) of the image and then I would like to be able to scroll around the image.</p> <p>My Surfaceview class implements the onMeasure callback and returns a size of 1024*768 which displays the area of the image that corresponds to the phone screen. I'd like to implement support for scrolling which I'm finding near impossible due to the very limited documentation (just bunches of classes and calls with no coherency). I've tried just calling scrollBy and that doesn't work.</p> <p>If anyone has any pointers about how to proceed this would be much appreciated.</p> http://stackoverflow.com/questions/950340/how-do-you-activate-line-wrapping-in-emacs 1 How do you activate line-wrapping in emacs? Peter 2009-06-04T12:46:34Z 2009-11-12T14:03:15Z <p>How do you use line-wrap (autoscrolling?) in emacs? So that the portion that doesn't fit on the screen isn't shown as opposed to shown on the next line?</p> http://stackoverflow.com/questions/1718588/js-scrolling-to-the-bottom-of-a-div 0 [JS] Scrolling to the bottom of a div Pez Cuckow 2009-11-11T22:40:06Z 2009-11-11T22:43:53Z <p>As part of an ajax chat room (using prototype framework) I am working on I scroll the user to the bottom each time a message is added using the below js.</p> <p>However if the user has scrolled up and the list up dates it jumps to the bottom.</p> <p>Is there any way to detect if the user has scrolled and then disable this function, but also detect when the user is at the bottom again so the js can be re-enabled? </p> <pre><code>var objDiv = document.getElementById("chat"); objDiv.scrollTop = objDiv.scrollHeight; </code></pre> http://stackoverflow.com/questions/1704997/uitextview-content-moves-up-when-textview-is-selected 0 UITextview content moves up when textview is selected. BrettS 2009-11-10T00:52:48Z 2009-11-10T01:27:30Z <p>I am pretty new to this iPhone dev thing but so far I have built a pretty good app but I have stumbled into this problem that for the life of me I cannot seem to solve.</p> <p>Basically the app is a chat application for social site. Everything is working 100% except the input box which currently is a UITextbox. This works fine however I would like the box to grow and be a multiline UITextbox with scroll. I replaced the UITextbox with a UITextview and all is good. I have the UITextview expanding as the user enters text however I have one slight problem that is driving me nuts.</p> <p>When the UITextview gets focus it shifts the cursor and any text in there up just out of view. The UITextview I have set to display 2 lines by default and then as the height of the text goes beyond those two lines I would like the box to grown (which it does) and the text to remain scrolled up so you can see what you are typing. If you look at the SMS app on the iPhone this is exactly how I would like it work.</p> <p>Any words of wisdom would be greatly appreciated.</p> http://stackoverflow.com/questions/1704425/how-to-prevent-pages-scroll-position-reset-after-dom-manipulation 1 How to prevent page's scroll position reset after DOM manipulation? Matt Garrison 2009-11-09T22:36:58Z 2009-11-09T22:41:33Z <p>I've got two JS functions, one that is adding options to a select box</p> <pre><code>function addOption(selectId, text, value) { var selectbox = document.getElementById(selectId); var optNew = document.createElement('option'); optNew.text = text; optNew.value = value; try { selectbox.add(optNew, null); //page position resets after this } catch(ex) { selectbox.add(optNew); } } </code></pre> <p>and another that is doing a document.getElementById(formId).appendChild(newHiddenInput) in a similarly simple function.</p> <p>They both work, elements are added as expected. However, upon calling either of them, the page resets its scroll position to the top of the page in both IE6 and FF. There is no postback, this is purely clientside manipulation. I've set breakpoints in Firebug, and it occurs immediately after the element.appendChild or select.add gets executed. I know I can use JS to manually set a scroll position, but I didn't think it was necessary when the page isn't being re-rendered.</p> <p>I'm no expert with JS or the DOM, so I may very well be missing something, but I've looked <a href="http://www.w3schools.com/jsref/dom%5Fobj%5Fselect.asp" rel="nofollow">here</a> and ran through their examples with the Try it Here options and I can't replicate the problem, indicating the codebase I'm working with is the culprit.</p> <p>Any ideas why the scroll position is being reset? jQuery is available to me as well, if it provides a better alternative.</p> http://stackoverflow.com/questions/1702185/tbody-scrolls-on-focus-in-firefox 0 TBODY scrolls on focus in FireFox Brandon Montgomery 2009-11-09T16:36:27Z 2009-11-09T16:51:02Z <h1>HTML</h1> <pre><code>&lt;html&gt; &lt;body&gt; &lt;div style="width:100%; height: 300px; overflow: auto;"&gt; &lt;table cellspacing="0" cellpadding="2" style="width:100%;"&gt; &lt;thead&gt; &lt;tr&gt; &lt;td&gt;Col1&lt;/td&gt; &lt;td&gt;Col2&lt;/td&gt; &lt;td&gt;Col3&lt;/td&gt; &lt;td&gt;Col4&lt;/td&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody tabindex="0"&gt; &lt;tr&gt; &lt;td&gt;Col1&lt;/td&gt; &lt;td&gt;Col2&lt;/td&gt; &lt;td&gt;Col3&lt;/td&gt; &lt;td&gt;Col4&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><br/><h1>Problem</h1> In FireFox, when you click on a row, it puts focus onto the tbody, causing the containing div to produce a horizontal scrollbar which scrolls for 1 pixel.</p> <p><br/><h1>Question</h1> How can I prevent the horizontal scrolling showing up when the row is clicked? I could put <code>"overflow-x: hidden; overflow-y: auto;"</code> on the containing div instead, but what if the div really does need to scroll horizontally? Does anyone know of a better way to handle this?</p> http://stackoverflow.com/questions/1686803/as3-scrollbar-content-formula 0 AS3 Scrollbar content formula Hwang 2009-11-06T10:43:38Z 2009-11-06T11:17:24Z <p>I've created a horizontal scroller and now I'm stuck on how to calculate the position of the content when the scroller is at a position.</p> <pre><code>private function checkDrag(event:Event):void { var procent:Number = (stage.stageWidth/(buttonLR.x+buttonLR.width))*(LISTmc.width) if (drag) { TweenLite.to(LISTmc,1,{x:-procent}); } //buttonLR width is also stretched according to how many data loads in, thats why I'm trying to target the center of buttonLR } </code></pre> <p>A new content will be added from left to right everytime I click a button, so the scroller will be moving to the right end of the bar since its scrolling from left to right, and to show the latest content. So if I want to go back to the previous content I have to drag the scroller to the left.</p> <p>Currently my code after I load in a new content and I click on the scroller, the content will move till the end of the left side of the stage (right corner of content x=0), and dragging it will makes the content move left more.</p>