Af:table scrolling issue

Hi,
I have a af:table. If I scroll down on it by clicking the scroll bar, the first column in my table gets highlighted, which I want to avoid. Is there a way to do this?
Also, if I use the scroll wheel, I don't see this issue.

Is columnSelection 'on'? (single or multiple)
If so, set it to none (if you don't need it of course)

Similar Messages

  • Jdeveloper - af:table scroll bar disappearing/truncating

    Hello,
    I'm having some issues with an af:table bound to a view object. The table is displaying questions to be administered to students applying for a scholarship. New questions can be created via a popup.. new questions are committed when the user clicks a save button on the popup, and the table is refreshed.
    The edit question popup uses af:inputText components to record most of the information for the new question being created. In particular, there is a field called "Question Text" - the display text for the question - which we put a 1000 character limit on. When typing in characters, at a certain point a scroll bar appears on the inputText component. I've noticed that after adding a few questions with the max # of characters, if I add a question, the question text of which doesn't have the max # of characters (and thus has a smaller scroll bar on the inputText component of my edit question popup) when I return to the main table, I lose functionality on my table scroll bar!
    For example, any time I make 2 questions with 1000 characters, and then a 3rd question with only two lines of Question Text, the scroll bar on the main table disappears completely until refreshed.
    Another time, I made 4 questions with a couple lines of Question Text, then 5 questions (#'s 5-9) with 1000 characters in the question text, then 3 questions that had just enough text to trigger a scroll bar in the inputText component of the Edit Question popup. When I would return to the table after creating questions 10-12, the most recent question would be in view... but if I scrolled to the top of the table and back down, I could only scroll down to question #9.
    All of my created data IS there, and a refresh restores the functionality of the table scroll bar. But has anyone seen behavior like this or have any suggestions of table settings, or how to best return from the edit question pop up (maybe I should re-execute the table's VO and NOT try to maintain currency on the newly created row..?) that might fix this?
    I'm including the code for my table and popup below just so you can see their settings. Of course, the components involved in this issue are part of a much larger system, so if there isn't enough information in this post to address the issue and you need any specific information (code from a backing bean/action listener method, etc..) just let me know!
    Thanks for looking.
    <af:panelCollection featuresOff="detach"
    id="stuQPc"
    partialTriggers=":::delQBtn :::appQCSave :::appQCCancel :::appQuestionSaveBtn :::appQuestionCancelBtn">
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar id="t2">
    <af:outputText value="#{pageFlowScope.mtnAppBean.currentAppName}"
    id="ot20"/>
    <af:spacer width="10"
    height="10" id="s2"/>
    <af:commandToolbarButton text="Create Student Question"
    partialTriggers="stuQTbl"
    clientComponent="true"
    icon="/images/add-16x16.png"
    disabled="#{ pageFlowScope.mtnAppBean.currentAppId==null}"
    id="ctb3">
    <af:showPopupBehavior popupId=":::appQuestionsPopup"/>
    <af:clientAttribute name="csaIsMultiChoice"
    value="No"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener method="handleEvent"
    type="click"/>
    <af:serverListener type="csaCustomEvent"
    method="#{schlrAppRequestBean.createEntity}"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton text="Reorder Questions"
    partialTriggers="stuQTbl"
    clientComponent="true"
    icon="/images/add-16x16.png"
    disabled="#{pageFlowScope.mtnAppBean.currentAppId==null}"
    id="studReorder">
    <af:showPopupBehavior popupId=":::studentReorderPopup"/>
    </af:commandToolbarButton>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.AppQuestionStudentRefVO1.collectionModel}"
    var="row"
    rows="#{bindings.AppQuestionStudentRefVO1.rangeSize}"
    emptyText="#{bindings.AppQuestionStudentRefVO1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.AppQuestionStudentRefVO1.rangeSize}"
    selectedRowKeys="#{bindings.AppQuestionStudentRefVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.AppQuestionStudentRefVO1.collectionModel.makeCurrent}"
    rowSelection="single"
    id="stuQTbl"
    columnStretching="last"
    displayRow="selected">
    <af:column sortProperty="CsaAppQuestionId" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.CsaAppQuestionId.label}"
    id="c6"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.CsaAppQuestionId.inputValue}"
    id="ot21"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.CsaAppQuestionId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="QuestionSeqNumber" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.QuestionSeqNumber.label}"
    id="c7"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.QuestionSeqNumber.inputValue}"
    id="ot22"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.QuestionSeqNumber.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="QuestionText" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.QuestionText.label}"
    noWrap="false"
    width="210"
    headerNoWrap="false"
    id="c8"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.QuestionText.inputValue}"
    escape="false" converter="hyperlinkConverter"
    id="ot23"
    inlineStyle="vertical-align:top;"/>
    </af:column>
    <af:column sortProperty="NumberWordsInResponse" sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.NumberWordsInResponse.label}"
    id="c9"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.NumberWordsInResponse.inputValue}"
    rendered="#{row.bindings.QuestionType.attribute == '2017'}"
    id="ot24"
    inlineStyle="vertical-align:top;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.AppQuestionStudentRefVO1.hints.NumberWordsInResponse.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="ResponseRequireDisplayText"
    sortable="true"
    headerText="#{bindings.AppQuestionStudentRefVO1.hints.ResponseRequireDisplayText.label}"
    id="c10"
    inlineStyle="vertical-align:top;">
    <af:outputText value="#{row.bindings.ResponseRequireDisplayText.inputValue}"
    id="ot25"
    inlineStyle="vertical-align:top;"/>
    </af:column>
    <af:column headerText="" id="c11"
    inlineStyle="vertical-align:top;">
    <af:panelGroupLayout layout="horizontal"
    id="pgl2"
    valign="top">
    <af:commandButton text="Edit"
    icon="/images/edit-16x16.png" id="editQ">
    <af:showPopupBehavior popupId="::::appQuestionsPopup"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener type="click" method="handleEvent"/>
    <af:serverListener method="#{schlrAppRequestBean.editClicked}"
    type="csaCustomEvent"/>
    </af:commandButton>
    <af:commandButton text="Delete"
    icon="/images/delete-16x16.png"
    id="cb6">
    <af:showPopupBehavior
    triggerType="action"
    popupId="::::qdelpu"/>
    <af:clientAttribute value="AppQuestionStudentRefVO1Iterator"
    name="csaIteratorBindingName"/>
    <af:clientListener method="handleEvent" type="click"/>
    <af:serverListener method="#{schlrAppRequestBean.prepareForDelete}"
    type="csaCustomEvent"/>
    </af:commandButton>
    <af:commandButton text=" Edit Choices "
    rendered="#{row.QuestionType != '2017'}"
    id="cb7">
    <af:showPopupBehavior popupId="::::appQuestionChoice"/>
    <af:clientAttribute name="csaIteratorBindingName"
    value="AppQuestionStudentRefVO1Iterator"/>
    <af:clientListener type="click" method="handleEvent"/>
    <af:serverListener method="#{schlrAppRequestBean.editClicked}"
    type="csaCustomEvent"/>
    </af:commandButton>
    </af:panelGroupLayout>
    </af:column>
    </af:table>
    </af:panelCollection>
    <af:popup id="appQuestionsPopup"
    partialTriggers="tmplt:stuQPc"
    contentDelivery="lazyUncached">
    <af:dialog title="Student Question" type="none"
    partialTriggers="appQuestionCancelBtn"
    closeIconVisible="false" id="d8">
    <f:facet name="buttonBar">
    <af:panelGroupLayout layout="horizontal" halign="center"
    id="pgl16">
    <af:commandButton text="Save"
    actionListener="#{schlrAppRequestBean.saveAppQuestion}"
    id="appQuestionSaveBtn"
    partialSubmit="true"/>
    <af:commandButton text="Cancel"
    id="appQuestionCancelBtn"
    actionListener="#{schlrAppRequestBean.cancelPopup}"
    immediate="true"
    clientComponent="true"
    partialSubmit="true">
    <af:resetActionListener/>
    </af:commandButton>
    </af:panelGroupLayout>
    </f:facet>
    <af:panelFormLayout id="pfl2">
    <af:inputText value="#{bindings.AppName.inputValue}"
    label="#{bindings.AppName.hints.label}"
    required="#{bindings.AppName.hints.mandatory}"
    columns="#{bindings.AppName.hints.displayWidth}"
    maximumLength="#{bindings.AppName.hints.precision}"
    shortDesc="#{bindings.AppName.hints.tooltip}"
    id="it11">
    <f:validator binding="#{bindings.AppName.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.CsaAppQuestionId.inputValue}"
    label="#{bindings.CsaAppQuestionId.hints.label}"
    required="#{bindings.CsaAppQuestionId.hints.mandatory}"
    columns="#{bindings.CsaAppQuestionId.hints.displayWidth}"
    maximumLength="#{bindings.CsaAppQuestionId.hints.precision}"
    shortDesc="#{bindings.CsaAppQuestionId.hints.tooltip}"
    readOnly="true" id="it12">
    <f:validator binding="#{bindings.CsaAppQuestionId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.CsaAppQuestionId.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.QuestionSeqNumber.inputValue}"
    label="#{bindings.QuestionSeqNumber.hints.label}"
    required="#{bindings.QuestionSeqNumber.hints.mandatory}"
    columns="#{bindings.QuestionSeqNumber.hints.displayWidth}"
    maximumLength="#{bindings.QuestionSeqNumber.hints.precision}"
    shortDesc="Order in which question will be displayed to applicant "
    id="it13">
    <f:validator binding="#{bindings.QuestionSeqNumber.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.QuestionSeqNumber.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.NumberWordsInResponse.inputValue}"
    label="#{bindings.NumberWordsInResponse.hints.label}"
    required="#{bindings.NumberWordsInResponse.hints.mandatory}"
    columns="#{bindings.NumberWordsInResponse.hints.displayWidth}"
    maximumLength="#{bindings.NumberWordsInResponse.hints.precision}"
    shortDesc="Maximum number of words allowed in the response "
    disabled="#{bindings.QuestionType.attribute != '2017'}"
    partialTriggers="questionTypeId" id="it14">
    <f:validator binding="#{bindings.NumberWordsInResponse.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.NumberWordsInResponse.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.QuestionText.inputValue}"
    label="#{bindings.QuestionText.hints.label}"
    required="#{bindings.QuestionText.hints.mandatory}"
    columns="60"
    maximumLength="#{bindings.QuestionText.hints.precision}"
    shortDesc="Verbiage of question " rows="6"
    id="it15">
    <f:validator binding="#{bindings.QuestionText.validator}"/>
    </af:inputText>
    <af:panelLabelAndMessage label="#{bindings.ResponseRequire.label}"
    showRequired="false" id="plam22">
    <af:panelGroupLayout layout="horizontal"
    shortDesc="Checkbox indicates a response is required "
    id="pgl17">
    <af:selectBooleanCheckbox label="#{bindings.ResponseRequire.label}"
    id="responseRequire"
    value="#{bindings.ResponseRequire.inputValue}"
    simple="true"
    autoSubmit="true"
    shortDesc="Checkbox indicates a response is required "/>
    <af:spacer width="5" height="10" id="s9"/>
    <af:outputText value="(#{bindings.ResponseRequireDisplayText.inputValue})"
    partialTriggers="responseRequire"
    id="ot49"/>
    </af:panelGroupLayout>
    </af:panelLabelAndMessage>
    <af:selectOneChoice value="#{bindings.QuestionType.inputValue}"
    label="#{bindings.QuestionType.label}"
    required="#{bindings.QuestionType.hints.mandatory}"
    shortDesc="#{bindings.QuestionType.hints.tooltip}"
    id="questionTypeId"
    autoSubmit="true">
    <f:selectItems value="#{bindings.QuestionType.items}"
    id="si4"/>
    </af:selectOneChoice>
    <af:inputText value="#{bindings.AddedBy.inputValue}"
    label="#{bindings.AddedBy.hints.label}"
    required="#{bindings.AddedBy.hints.mandatory}"
    columns="#{bindings.AddedBy.hints.displayWidth}"
    maximumLength="#{bindings.AddedBy.hints.precision}"
    shortDesc="#{bindings.AddedBy.hints.tooltip}"
    id="it16">
    <f:validator binding="#{bindings.AddedBy.validator}"/>
    </af:inputText>
    <af:inputDate value="#{bindings.AddedOn.inputValue}"
    label="#{bindings.AddedOn.hints.label}"
    required="#{bindings.AddedOn.hints.mandatory}"
    shortDesc="#{bindings.AddedOn.hints.tooltip}"
    id="id5">
    <f:validator binding="#{bindings.AddedOn.validator}"/>
    <af:convertDateTime pattern="#{bindings.AddedOn.format}"/>
    </af:inputDate>
    <af:inputText value="#{bindings.UpdatedBy.inputValue}"
    label="#{bindings.UpdatedBy.hints.label}"
    required="#{bindings.UpdatedBy.hints.mandatory}"
    columns="#{bindings.UpdatedBy.hints.displayWidth}"
    maximumLength="#{bindings.UpdatedBy.hints.precision}"
    shortDesc="#{bindings.UpdatedBy.hints.tooltip}"
    id="it17">
    <f:validator binding="#{bindings.UpdatedBy.validator}"/>
    </af:inputText>
    <af:inputDate value="#{bindings.UpdatedOn.inputValue}"
    label="#{bindings.UpdatedOn.hints.label}"
    required="#{bindings.UpdatedOn.hints.mandatory}"
    shortDesc="#{bindings.UpdatedOn.hints.tooltip}"
    id="id6">
    <f:validator binding="#{bindings.UpdatedOn.validator}"/>
    <af:convertDateTime pattern="#{bindings.UpdatedOn.format}"/>
    </af:inputDate>
    </af:panelFormLayout>
    </af:dialog>
    </af:popup>

    Thanks Mohammad
    I tried this but doesn't work. Also I save the getRangeStart return value before Rollback and tried to set with scrollRange(range) or scrollToRangePage(range) methods after Rollback but nothing changes, the scrollbar resets to the top position. The getCurrentRow and getRangeStart methods return the original values before rollback, but the scrollbar continue moving at the top position of the table...
    Any suggestions?

  • Scrolling issues in IE6

    I've found a couple other threads that are similar to my issue, but nothing yet that completely answers my question.
    I've got a page that was created in iWeb and uploaded to a website hosted by google (Google Apps - Google Page Creator). The page and subpages load up perfect (a little slow), in Firefox and Safari, and even in IE7, but for some reason, IE6 screws up the formatting and freezes up when trying to scroll the page. A couple of the other threads say something about changing the javascript; I'm just wondering if anyone has had this problem before and if there is a solution. I would tell friends and family to download Firefox instead, but I would also like to give them the option of choosing their browser.
    My site is here: http://www.secules.net/Munchkin.html
    If someone could clue me in as to why IE6 has problems with this page, and what I could do to fix it, I would greatly appreciate it!
    Thanks!

    Ars,
    When we run this form in 6i environment(client-server) it works fine but in 10g environment it gives issues in scrolling. The record switch between few records and takes lot of time in displaying data in child blocks.What exactly is the "Scrolling Issue" you are having? Are you getting errors or is it just slow?
    Based on the description of your form layout, my first guess would be that your form is very slow. When migrating a Forms Application from Client/Server (C/S) to web; there is more to the process than just converting your form from one version of the Forms Builder to a newer version. It is a complete paradigm shift in how you design and optimize your forms. With a C/S app you didn't have to worry about network traffic. With a web deployed app, you have to be very conservative with network traffic because excessive network traffic (typical of a C/S app) will cause your form to be very slow when deployed to the web. From your description, it sounds like you have "excessive" network traffic.
    I have a few questions. Is it really necessary to populate the detail Global Temp Tables (GTT) as the user navigates from record to record? It would be more efficient to populate your GTT with all of the records related to a Master record set rather than populate them as the user navigates from one record to the next. Why do you need to use GTT over a standard table or view? Is it to restrict what data a user has access too? If so, there are more effiicient ways to accomplish this; like Virtual Private Database functionality, or perhaps use a From Clause query in your form to only query records a user might have access too.
    Craig...

  • Scrolling Issue with Yoga 3 Pro

    Hi guys,
    Got myself a yoga 3 pro and i really like it! It has got a few issues though... The one currently frustrating me the most is shown in the following video:
    Scrolling Issue
    Google Chrome somehow doesn't work well on this laptop. As you can see the UI renders in funny angles, then sometimes even stays like that after scrolling. But this mostly just happens while scrolling and then when the scrolling is complete, it renders fine again, particularly on longer webpages and PDF's. Also the scrolling itself is very laggy and sometimes not responsive, although this might also be the touchpad not reacting that well - I have to say i had a macbook pro before this and that touchpad is unbeatable (the rest is **bleep** hehe).
    I couldnt reproduce the same issues on Internet Explorer (somehow no surprise, it being a windows thing and all). Firefox has laggy scrolling but almost no rendering issues of the same kind (when used heavily, it also happens though). When used heavily (high cpu usage) i even experienced this issue briefly in the windows explorer.
    Now I'm not just here to complain, as I said before the laptop is great in general, just hoping there is a solution or awareness regarding the scrolling issue.
    Thank you.
    Regards

    Haven't seen that on my Y3P, *but* I agree that the trackpad is just horrible compared with Mac trackpads, or even with the Logitech T650. As for Chrome, indeed it works OK with touch but not so great with the trackpad. In general, IE works better, looks nicer, and uses less power---but it's noticeably slower.

  • Applying table scroll bar for only table rows with table columns fixed.

    hi oa gurus,
    i had implemented table scroll bars using oarawtextbean , there is no problem in vertical and horizontal scroll bar working its working fine. but the requirement is i need to scroll only the table rows with table columns fixed. so , how to achieve the table scroll for only table datas neglecting table headers.
    the code for vertical and horizontal bars scroll is like this,
    OARawTextBean ors = (OARawTextBean)webBean.findChildRecursive("raw1");
    ors.setText(div id=tabledivid style=height:500px;width:100%; overflow:auto>);
    OARawTextBean ore = (OARawTextBean)webBean.findChildRecursive("raw2");
    ore.setText("</div>");
    where raw1 and raw2 are rawtextbean created above and below of the table . but i dont know hoow to apply this only for table rows neglecting table columns , can anybody give any ideas.
    pelase this is very urgent , can u help me in this regards
    thanks
    Edited by: user630121 on Sep 29, 2008 5:17 AM
    Edited by: user630121 on Sep 29, 2008 5:18 AM

    hi,
    I have a similar task to do... Only to apply scrollbar at the table level.
    I tried using the above mentioned but I am facing Null Pointer Exception..
    Please explain about raw1 and raw2
    Rahul

  • Scroll issue OS 10.9.2

    someone else has spotted a scrolling issue on Safari, Preview of pdf files and every animation (from the dock to switching desktop)? what I mean: it seams like "twitching" and is very frustrating to deal with it.
    is it possible to solve it?

    I often see this because horizontal scrolling will move back and forward in a browser (like clicking the forward and/or back buttons).  This often appears as twitchiness.  Try to observe if this is the case when you experience this.

  • CreateInsert puts table scroll at the top position

    Hi all,
    I've found a strange behaviour with ADF Tables with editingMode="editAll":
    Clicking the CreateInsert button always puts the table scroll at the top position, which is really annoying. Does anyone know how to solve it?
    Thanks in advance
    Barbara
    Version
    ADF Business Components 11.1.1.56.60
    Java(TM) Platform 1.6.0_18
    Oracle IDE 11.1.1.3.37.56.60

    In my case, rows don't have to be added as the last in the table, just next to the current row. Anyway, your link gave me a clue: use displayRow="selected" in af:table instead of the default value (displayRow="first") turns the selected row always visible, which is exactly what I wanted : )
    Thanks, Shay!

  • SSRS Reportmanage scroll issues

    Hello,
    I have developed the SSRS report using BID's and have deployed it to report server and when I try to view the report in the report manager it does not show the entire report and horizontal scroll bar appears even though there is lot of space in the browser
    window.
    I want to get rid of that scroll bar and view the entire report on the screen as you can see there is lot of space to the right of the screen yet.
    Your help is much appreciated
    Thanks
    Adarsh

    Hi,
    I verified my report and I have not left any space to the right of my report item.
    Please find the attached screenshot of my report design and also the scroll issue I was referring. 
    I have marked the scroll bar in red in the image which I need to get rid off and show the entire report on the screen.
    Your help is greatly appreciated.

  • Flex 3 and Mac os 10.6.3 Scrolling Issue

    I am trying to understand why I am getting Scrolling vertically and horizontally on my VBox and HBox container even though I explicitly code it as verticalScrollPolicy="off" horizontalScrollPolicy="off". The funny thing is that it works correctly as I want on my Intel Boxes with various browsers to not show any scrolling, but as soon as I view it on the mac I get the scrolling issues.
    Anyone know if they experienced this problem and any workarounds.
    -- Thanks

    Not sure what's happening with your code, you'll have to post an example that shows this happening to you.
    On OS X 10.6.4 and Flex 3.5, it works as it should.
    I made this as an example and view source is enabled.  I have two VBoxes, one with scrolling disabled and one with it enabled.
    http://thebouv.com/flex/boxscrolling
    Message was edited by: thebouv (I'm actually on 10.6.4, said 10.6.3 before)

  • HELP - Library Left pane scroll issues ( when in grid view )

    I've run into a issue that is really starting to piss me off and hinder my workflow!
    When in Library mode grid view, I can't scroll left folder/publish service with my mouse scroll wheel. UNLESS I'm hovering over the scroll bar.  If I'm hovering over a folder, I can't scroll ( VERY annoying )
    now this is where it gets weird, when in loupe / thumbnail view, I can scroll the left pane fine with no issues.  Also, scrolling the left or right pane in Develop mode with no issues as well.
    Also, it seems like the when scrolling the right pane in Library view is a bit flakey ( it scrolls, but pauses at some places )
    I've read THIS thread, but I dont have any of that type of software on my PC. 
    I've tried 3 different mice with no fix. 
    Any help or ideas would be appreciated. 
    thanks

    @sjmphoto0300: I have a Dell XPS 15 502X laptop (running Win 7 Home) and had the same scrolling issue as you in LR 3.6 when in the Library module only (the Develop module sidebar scrolling works fine). I could not scroll using my touchpad on the left or right pane unless my cursor was directly over either thin grey scroll bar or on the actual sidebar headings (e.g. "Catalog," "Folders," or "Quick Develop"). Mousing over the latter would only enable me to scroll until the cursor was no longer over the heading which was pretty useless.
    I have Synaptics TouchPad v7.4 installed. While I don't have an option in my Mouse properties to specify certain programs that don't scroll properly as mentioned in another post, I did find a solution that works for me!
    I had to do TWO things to get scrolling in the sidebars working properly:
    1) In this thread (http://forums.adobe.com/message/3888114#3888114) it was mentioned that the Synaptics scrolling graphic that appears (see screenshot below) interferes with scrolling and the scrolling graphic can be disabled with a registry tweak and then restart the Synaptics applications (2) or reboot.
    2) Right-click an empty spot on the desktop and go to Personalize > Change Mouse Pointers > Device Settings (Synaptics logo on tab) > Settings. Click on Scrolling on the left of the Synaptics Properties window > Scroll item under pointer. Click Enable.
    That got sidebar scrolling working without having to keep the cursor hovering above the skinny scrollbars. It seems like the Synaptics software doesn't recognize what area is always scrollable in Lightroom when "Scroll selected item" is selected.
    Hope this helps someone else out there.

  • Handling a table scroll event

    Hi experts,
    I have a table with several columns. In one column there is a small image thumbnail. After the content (JSONModel) has rendered in the table, a javascript is triggered, which searches for the thumbnails and generates on mouseover bigger preview of that image. However, if I scroll down the table, then the preview is not generated and I would like to re-run that script again. Therefore I would like to handle a table scroll event.
    How could a listener to the scroll event of a sapui5 table be handeled?
    Regards
    Stefan

    HI Stefan
    Here is an example. But it is not officially supported.
    Example
    -D

  • Scrolling issue on HP Pavilion DV7-4270

    RE: HP Pavilion DV7-4270; Windows 7 Home Premium 64-bit Service Pack 1
    Scrolling issue:
    As my finger reaches the bottom edge of the Synaptics Touch Pad, I lift finger to begin scrolling at top of touchpad again, but it will not scroll until I tap on the touchpad.  Tapping was not necessary in the past to begin scrolling again. This occurs in one-finger and two-finger scrolling. It states the latest driver (15.3.29.0 from October 2011) is installed.
    Maybe there is a conflict with Microsoft and Logitech software for the external mice. If so, this is the only conflict.
    Any help will be greatly appreciated!

    Thanks for such a quick reply, unfortunately, disabling tapping did not correct the scrolling issue. Any other suggestions?

  • Advanced data grid header scrolling issues

    Advanced data grid header scrolling issues
    i fix the header width like 150 then am giving header text "planned final review" it display only planned final... review is not display when i scrol the mouse review word is display give me any idea avoid this issues without changeing the width

    Advanced data grid header scrolling issues
    i fix the header width like 150 then am giving header text "planned final review" it display only planned final... review is not display when i scrol the mouse review word is display give me any idea avoid this issues without changeing the width

  • Scrolling Issues

    Photoshop Elements 10 for Mac scrolling issues when in Organizer (new Mac PowerBook with Lion OS). When scrolling the screen runs on and on and there seems no way to stop it “until it runs out of speed” This happens whether I use the scroll bar (dragging on bar, clicking above and below bar, clicking on arrows at top and bottom, etc.), or swiping up and down on screen. I have tried to stop scrolling by clicking on screen and scroll bar with no effect, and if I reverse the swipe direction on the screen it repeats the problem in reverse. It makes reviewing my pictures so challenging as to make the organizer worthless. Is there a setting or fix for this issue? I previously used Photoshop 4 on my PC (XP OS) and never encountered this problem.

    Thanks, this does make the scrolling easier/precise when trying to move from one "page" of pictures to the next. R

  • Scrolling Issues (Build 370)

    I'm seeing some really odd behavior with the scrolling
    related properties on the container controller class in build 370.
    From what I'm seeing, the values for contentHeight are changing as
    the verticalScrollPosition changes, even if the content of the text
    flow has not been modified. This is very evident with a really long
    text flow in one container. The problem is that the scroll bars are
    getting new values for content width/height all the time and they
    end up jumping around a lot as you scroll the container.
    Did something change here that I'm overlooking? I'm basically
    just passing the content sizes and scroll positions straight into
    the scrollbars, which had always worked fine in the past. Now
    scrolling can be very erratic. Anyone have ideas?
    Thanks,
    Brent

    Another scroll issue:
    I import large text in TextFlow. In start point text typed
    normally (fast), but when I scroll to bottom of my text, near last
    line, type speed is very slow. I can write some text and see how
    letters showes in textflow next few seconds .
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="creationCompleteHandler()">
    <mx:Script
    source="textSample.as"/> //<--string with large text
    <mx:Script>
    <![CDATA[
    import flashx.textLayout.edit.EditManager;
    import flash.text.engine.TabAlignment;
    import flashx.textLayout.formats.TabStopFormat;
    import flashx.textLayout.formats.LineBreak;
    import flashx.textLayout.elements.TextFlow;
    import flashx.textLayout.conversion.TextFilter;
    import
    flashx.textLayout.container.DisplayObjectContainerController;
    private function creationCompleteHandler() : void
    var _textContainer : Sprite = new Sprite();
    canvas.rawChildren.addChild( _textContainer );
    var _controller : DisplayObjectContainerController = new
    DisplayObjectContainerController( _textContainer, canvas.width,
    canvas.height );
    TextFlow.defaultConfiguration.manageTabKey = true;
    var textFlow : TextFlow = TextFilter.importToFlow(
    textSample, TextFilter.PLAIN_TEXT_FORMAT );
    textFlow.tabStops = createTabs( 10, 30 );
    textFlow.lineBreak = LineBreak.EXPLICIT;
    textFlow.flowComposer.addController( _controller );
    textFlow.interactionManager = new EditManager();
    textFlow.flowComposer.updateAllContainers();
    private function createTabs( count : uint, step : uint ) :
    Array
    var tabsArray : Array = [];
    var tabStopFormat : TabStopFormat;
    for ( var i : uint = 1; i <= count; i++ )
    tabStopFormat = new TabStopFormat();
    tabStopFormat.position = i * step;
    tabStopFormat.alignment = TabAlignment.START;
    tabsArray.push( tabStopFormat );
    return tabsArray;
    ]]>
    </mx:Script>
    <mx:Canvas
    id="canvas" width="750" height="480"
    backgroundColor="#FFFFFF"/>
    </mx:WindowedApplication>

Maybe you are looking for

  • Error while executing the midlet ----pleasehelp

    Hi everyone, I am new to webservices, I am trying to execute a webservice from a midlet. Iam getting the below error. java.lang.NoClassDefFoundError: org/kxmlrpc/XmlRpcClient      at kxmlrpc_demo.commandAction(+49)      at javax.microedition.lcdui.Li

  • Use of Distribution model in Idoc to file

    Hey guys just outta curiosity,why do we need to create distribution model for IDOC to file scenario,we can ofcourse do the scenario without creating Distribution model (by using WE19 to send IDOC's). is it because for day to day transactions we wont

  • Link Tables for Delivery,Outgoing Excise Invoice, A/R Invoice

    Hi Guys, I am struck up somewhere in linking the below tables, ODLN,DLN1,               OOEI,OEI,OEI4,OEI5,OEI3               OINV,INV1INV4 . I want to display Delivery (No,customer name), Outgoing Excise( No, Date , Customer/Whse No(If base doc is i

  • Prompt Default Value based in drilled result

    I am navigating(drill using action link) from an analysis to a dashboard where I have a prompt for currency. I want this to be initialized to a dynamic default value based on the column values. Master Analysis Country valid currency Drill India C1 Li

  • BBM Restore via Email not working

    I have a 9930 on verizon, and have previously backed up my bbm contacts to my email address that I have also setup on my new blackberry. I try to restore bbm contacts via email, i click confirm to send an email, but then it says "The verification ema