Future support for Scroll Bar Events?, Any workarounds?

I am wondering whether there is an intention to add scroll bar
events to Forms. These would be incredibly useful in a number of
situations ie
1) You have a window with two stacked canvases. One contains
items in a tabular MR block style. It has a horizontal scroll
bar. When the user scrolls this view, I want to move another
stacked canvas by the scrolled amount, to keep it in synch with
the underlying items.
2) Similar problem for block scroll bars. In a MR block, I have
a list item on a stacked canvas, that I reposition over the the
current record. This is acheived by writing a When-New-record-
Instance trigger. Unfortunately, when the user scrolls with the
scroll bar, the stacked canvas obviously doesn't move.
The only solution I have found is to use timers, which is very
messy
null

Hello,
This is a well-known issue with this code, as you can see in the thread you copied the code from.
In the following post, Laura is presenting an IE only solution, based on a different code I wrote - Re: How to implement fixed column headers . Cross browser solution is yet to be found.
Regards,
Arie.

Similar Messages

  • HT204266 My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

  • While looking to upgrade to a new MBP, found out latest version of iTunes does not support wired syncing of iCal and contacts. syncing of these must be done through iCloud. This is a deal breaker for me. are there any workarounds?

    While looking to upgrade to a newer MBP, found out latest version of iTunes does not support wired syncing of iCal and contacts. Syncing of these must be done through iCloud. This is a deal breaker for me for several reasons. Are there any workarounds or do I have to go back to a PC with my tail tucked between my legs?

    When you say wired syncing, are you meaning between an iphone and your mac?

  • Array scroll bar event

    Is there any way that I could get the event from array scroll bar in LabVIEW 8.5? I have an one-dimensional array and I made the vertical scroll bar visible. What I want to do is that when I drag the scroll bar to change array index value, I need to change the content of another array that will display the visible line number of the first array. Array index display only is not suitable for my application.

    Jason2006 wrote:
    I need to change the content of another array that will display the visible line number of the first array.
    I don't quite understand what you mean by "visible line number of the first array". Arrays don't have line numbers. Do you just want to scroll it to the same element as the first array?
    In this case you could do something like the following (hey, it even works for multidimensional arrays! ):
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    MultiScroll.vi ‏19 KB

  • Content canvas to stacked canvas for scroll bars

    I have a form which has more items. Initially I developed the form with content canvas(this has vertical scroll bar). now I changed this canvas to stacked canvas to get horizontal + vertical scroll bar. But I am not able to do it. Can any one please advice me how to achieve. Basically I need horizontal + veritcal scroll, so that user can easily scroll it.
    Appreciate your help.
    Thanks in Advance!!

    Hi
    This is a common task in Oracle Applications forms, the steps would be:
    - Put the context, fixed fields on content canvas, to the left of the window
    - Modify the block to show vertical scroll bar, display it on content canvas, to the right of the window
    - Accommodate remaining fields on stacked canvas, all of them from 0.0 to the right.
    - Modify stacked canvas viewport size and position to be shown in the space between the fixed fields on the content canvas and the vertical scrollbar on it, allow for space to the horizontal scrollbar
    - As Craig's answer states, modify stacked canvas property to show horizontal scrollbar

  • Future support for APPV Management Servers

    I have heard rumors that APPV is moving away from the separate Management servers and future releases will only support SCCM integration.  Is this a true roadmap ?

    I don't have any insider information BUT I have not heard this from anybody. I'd lean on the side of not believing this. It's still an ok solution for small Enterprise. 
    Considering the announcement yesterday, what the future holds for App-V should be very interesting.
    PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog:
    rorymon.com Twitter: @Rorymon

  • Future support for using PL/SQL core business logic with ADF BC

    We want to migrate our large Forms client/server (6i) application to ADF, possibly using a migration tool like Ciphersoft Exodus.
    One scenario could be to use ADF BC and ADF-Faces or a different JSF-Implementation for presentation and business layer but keep our heavy PL/SQL-businesslogic inside the Oracle database in packages, triggers, functions and procedures.
    This scenario could be chosen due to the huge amount of interconnected logic inside the database (10 years of development; no technical components; any package may access any table and more of this kind of dependencies). The business logic nowadays held in Forms client will be moved mainly into the database as a prerequisite to this scenario.
    Choosing this "keep-logic-in-DB"-scenario we need a good support by ADF BC to do so. We know and prototyped that it is possible to call some PL/SQL via JDBC from ADF BC and it is possible to use stored procedure calls for standard business entity data access (ins, del, upd, ..). But this does not solve our problems. We want to reuse core business logic coded in PL/SQL. This is much more than change the ADF standard behavior for an update with an own PL/SQL-call.
    Now my question:
    Will there be a kind of sophisticated support to use ADF BC in combination with database-kept logic?
    If so, when will this happen and how will the common problems of transactional state inside the database and inside the ADF BC be solved? Any plans or ideas yet?
    Many other clients do have similar applications built in Forms and PL/SQL and would be glad to hear about a path of direction.
    I've read the technical article 'understanding the ADF BC state management feature' which you have contributed to. One current limitation is pointed out there: Using PL/SQL with ADF BC limits ADF AM pooling to 'restricted level' which reduces scalability.
    Are you aware of additional main problems/tasks to solve when using PL/SQL heavily with ADF BC, which we have to think about?
    Thank you for any response.
    Ingmar

    My main problem is two 'concurrent' areas holding state in an application system based on DB-stored PL/SQL-logic in combination with ADF BC.
    For a new System everything can be made ok:
    Sure, it is possible to build a new system with the business logic included in ADF BC only. All long-living state will be handled in the BC layer ( including support for UnitsOfWork longer than the webside short HTTP-requests and HTTP-sessions and longer than the database transactions.
    For an old system these problems arise:
    1. DB data changes not reflected in BC layer:
    Our PL/SQL-logic changes data in tables without notifying the ADF BC layer (and its cache). To keep the data in ADF BC entity objects identical to the changed database content a synchronization is needed. BC does not know which part of the application data has been changed because it has not initiated the changes through its entity objects. Therefore a full refresh is needed. In a Forms4GL environment the behavior is similar: We do frequently requeries of all relevant (base)tables after calling database stored logic to be sure to get the changed data to display and to operate on it.
    -> Reengineering of the PL/SQL-logic to make the ADF BC layer aware of the changes is a big effort (notifying BC about any change)
    2. longer living database transactions
    Our PL/SQL-logic in some areas makes use of lengthy database transactions. The technical DB-transaction is similar to the UnitOfWork. If we call this existing logic from ADF BC, database state is produced which will not be DB-committed in the same cycle.
    This reduces scalability of ADF BC AM pooling.
    Example:
    a) Call a DB-stored logic to check if some business data is consistent and prepare some data for versioning. This starts a DB-transaction but does not commit it.
    b) Control is handed back to the user interface. Successful result of step a) is displayed
    c) User now executes the versioning operation
    d) Call another DB-stored logic to execute the versioning. DB-transaction is still open
    e) Business layer commits the transaction automatically after successful finishing step d). Otherwise everything from a) to e) is rolled back.
    -> redesign of this behavior (= cutting the 1to1 relation between LogicalUnitOfWork and the technicalDatabaseTransaction is a big effort due to the big amount of code.

  • Support for bi-directional GIOP any time?

    One thing I was wondering about while preparing for a presentation was why bidirectional GIOP isn't supported in the 1.5 version of the ORB? The default uni-directional nature of IIOP is the achilles heel with CORBA in terms of the firewall penetration issue. (I think most agree now that making IIOP one-way was a fundamental design mistake. Bidirectional should probably be the default now.) I was just curious why Sun hasn't pursued a firewall friendly version of their version of CORBA. RMI has some support for firewall penetration, it'd be nice to see something similar for CORBA as well and further support in RMI such as full duplex communication. (If you're using Applets or trusted applications, I don't see any reason not to support multiplexed communication. ) It'd be nice to have alternative solutions in available in the JDK for the firewall penetration problem other than HTTP-based solutions. (I know that Jacorb and OpenOrb already support bi-directional GIOP, but it'd be great to have better support in the bundled version as well.)
    Thanks!
    Rob

    I had an exchange with Sun some time ago about this and IIRC they were not convinced of the viability of the specification, can't remember the details, sorry, it's a long time ago. Are there other implementations of bi-di IIOP?

  • Future support for C++0x in Sun Studio

    I've recently been having to defend my choice of using the sun studio compiler against several gcc advocates here in the office. The one reasonable issue they keep bringing up is when the upcoming C++0x (more like C++1x or even C++2x at the pace the standards committee is operating at) features will be available in complete fashion in sun studio. They say, and I have to begrudgingly agree, that judging by the amount of time it took studio to support boost (template templates, certain partial template specializations, etc), there could be a long delay between the release of gcc's C++0x support and that of studio's.
    I understand that many of the new features of C++0x, even from initial glance, appear to be quite complicated, especially lambda functors and their associated []/auto return types, variadac template parameters and class concept checking. In addition, I understand gcc has an unfair advantage so to speak since it is being used as the test bed for many of the committee proposal submitter's proof-of-concept implementations (the variadic template parameter feasibility implementation written for gcc comes to mind).
    Could a developer please assuage my fears and inform me that the studio team has a roadmap/timeframe in place to release a studio that fully supports the new language-level features in a reasonably competitive time frame? It apparently will be the responsibility of the STLPort team to essentially copy many of boost's libraries (shared_ptrs, random numbers, type_traits) and rename them and move them to the std namespace and also supply the new unordered<> containers, to name a few.
    I for one can't wait until boost::mpl, boost::fusion, boost::format and others are all reduced from 10's of 1000's of lines of pre-processor generated crufty template definitions to a single variadic template declaration. Also, I won't feel quite so willfully derelict to efficient code every time i bust out an std::for_each and drop in a boost::bind generated functor and instead can use a lambda function with the various efficiency gains ranging from direct referencing to the stack variables passed in as the closure arguments to the ability for the compiler to actually inline the body of the lambda function where appropriate.
    I'm in no way trying to accuse you compiler developers of being slow to implement features, but just would like to be assured that there is nothing to worry about and there is a plan and current work being done on the required features. I know it's still a couple of years off, but I personally can't wait to replace hundreds of lines of boost::bind() calls with their more efficent lambda equivalent, and in addition clean up interfaces that could have used boost::bind if it weren't for the unacceptable overhead introduced often executed blocks of code.
    Thanks,
    Chris Knight - Faithful sun studio user through at least 2 major name changes and since at lest when it was called Forte 4.2 and RougeWave and classicIO libraries roamed the earth in vast quantities.
    P.S. I truly fear that the other 3 major compilers (gnu, intel, ms) will be out the door with C++0x in around the same time and boost will then willingly drop support for the sun compiler if it doesn't support the required language features at that time as they had no problem not supporting studio at all until Studio 12 so I'm sure as soon as the 3 compilers they run nightly tests with support it, they'll be just as eager to
    make use of the new features as I am.
    This leaves someone who has based their entire system on Solaris + SunStudio + Boost in a potentially undesirable situation. Solaris is far too stable and Linux to ever-changing to ever consider Linux as a platform for critical systems yet the idea of running g++ on Solaris w/ gcc's propensity to change their ABI on a weekly basis gives me immediate heartburn.
    Thanks again.

    You raise some very good points, and believe me, we are even more aware of them than you are!
    Short answer: We are planning to bring out a compiler conforming to C++0X in a timely fashion.
    Longer answer:
    Right now, we are working on providing binary compatibility with g++ as an option in the next compiler release. When we are done, you will be able to use g++ headers with Sun C++, and link the code with binaries created by g++. The first implementation will be on Linux. (Which versions of g++ and which versions of Linux? Stay tuned.)
    Implementing all the new features of C++0X will require a re-design of parts of the compiler front end. The current compiler organization does not support "concepts", for example. (We've been looking for an excuse to re-design the front end for a while, and C++0x is not just an excuse -- it's a requirement.) With the g++ ABI work done, we'll ready to start the re-design, and begin to implement C++0x features.
    We won't release an official (stable, fully-supported) product with C++0X features until the standard is final. Until then, any feature could change in unpredictable ways. We got caught by that problem with C++ 4.2 and C++98 -- we implemented what we thought were final features that changed dramatically after we released the compiler. We won't do that again. Compiler stability is one of our most important considerations.
    Beginning some time next year, we expect to have Express releases with some C++0X features. Express releases are our way of providing compilers with experimental features that might not be stable yet. It gives our customers a chance to try them out and provide feedback before they become part of a stable release. That is to say, a feature flagged as experimental is subject to change, and compatibility with other Express or official releases is not guaranteed. We can therefore fix bugs and catch up with late changes in the Standard as necessary.
    We have not yet done all the planning for our C++0X compiler, so I can't give you any estimates about specific feature availability and time frames. When we are farther along, we'll post the road map on a public site, and I'll announce it here.
    Steve Clamage
    Sun C++ Team

  • There are no scroll bars on any web pages. This happened after I upgraded my iMac to Lion OS X.

    System: iMac Intel Core 2 Duo w/ 4 GB of RAM (800MHz DDR2).
    OS: X Lion 10.7
    I have scroll bars on web pages in Safari, but none in Firefox. I noticed the problem immediately after upgrading my OS to Lion 10.7.

    Try:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    You can also try to remove the Firefox plist file.
    Go to "Library > Preferences" and remove the plist file for Firefox (org.mozilla.firefox.plist).

  • Current/Future Support for Exchange Folders and Task List Items

    Are there any plans for SES to be able to index public Exchange folders and task list items?
    Does anyone know or is aware of any workarounds for indexing public folders and task lists?
    Thanks in advance.

    Are there any plans for SES to be able to index public Exchange folders and task list items?
    Does anyone know or is aware of any workarounds for indexing public folders and task lists?
    Thanks in advance.

  • How to unlock iphone 3gs, its not supporting for other networks, can any bady help me...

    Hi,
    i am using Apple IPhone 3GS,... with Vodafone Service, in INDIA.
    but now its not supporting for any other Service's,
    can any bady tell me how to Unlock the Iphone...

    Only the Carrier the phone is Locked to can Unlock it... you need to Contact the Carrier.

  • Support for Outlook email coming any time soon?

    I have heard rumours that Apple is working on a solution for all the Microsoft Outlook email business users. Does anyone have any more concrete information on this and an estimate to when this could happen?

    Hi and Welcome to the Community!
    BlackBerry does not decide what apps, of the millions out there, will be compatible with it's devices. Rather, the app developers choose, for their app, which devices they will support. Hence, the place to make your inquiry is with the developer of the app...to find out when/if they plan to support your specific BB model and OS level.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • 8.4RC mentions support for Fuji lens profiles - any details known?

    Curious if this is new support or if it's always been there and now ACR shows a message about it. I installed the ACR 8.4RC and loaded a RAW file from my X-T1. Looking at the Lens Corrections tab and the Profile sub-tab, there's now a message at the bottom that says "Built-in lens profile applied: XF14mmF2.2 R. Click for more info." When I clicked, a small dialog box appeared which  offered a little more info:
    Fujifilm X-T1
    XF14mmF2.8R
    This raw file contains a built-in lens profile for correcting chromatic aberration and vignetting. The profile has already been applied automatically to this image.
    I experimented and got this for RAWs shot with my X-E2 as well and also my 18-55 and 55-200 lenses. I then went back to ACR 8.3 and confirmed that the messages are not there.
    I notice that despite what they say, going to the Color sub-tab and checking Remove Chromatic Aberration was still required for some images.
    I didn't see this aspect of the update listed in any release notes. Does anyone know any details about this? Is there a way to turn it off if so desired? I'm curious if the Fuji profile is as good as one that could be created with the Lens Profile Creator. The message doesn't mention geometric correction which would be nice.

    The information about what built-in lens profile is being applied is new to ACR 8.4, but the application of built-in lens profiles is not new. 
    Whether those lens profiles do a perfect job is another matter, of course.  And just like in previous versions, you cannot turn the built-in profiles off, but if someone creates an external profile those can also be applied. 
    The one thing to be careful of is if the built-in lens profile also corrects the same aspect as the external profile, for example, vignetting, then it’ll get double-corrected and the way to avoid this is to set the manual strength setting of that profile correction parameter, either vignetting or distortion, to its minimum value, effectively turning off the external profile’s contribution.

  • When resuming from standby in OSX, firefox has no gesture support for scrolling, tapping to click or three finger flick back and forth in Snow Leopard

    This occurs in 10.6.8 Snow Leopard when resuming usage after the computer was in standby (closing the lid).
    I never experienced this with firefox 6. The problem arose with 7 and continues with 8.

    I'd like to chime in and add that there is currently no acceptable Font Management solution for OSX.
    Sorry, but it's true.
    Me, and every professional designer / ad agency / design firm I know struggles with this every day. In fact, most of them have resorted to the 'ol "temporarily drag said fonts into ~users/library/fonts, and then out again when you're done".
    That's no way to work.
    I've tried them all. And I know people who've tried them all. Font Book, Suitcase2, Font Explorer X, FontAgentPro, etc, etc. And they ALL have major problems. Especially when you have more than a few hundred fonts. Which most designers easily do.
    We need a robust, stable, AUTO-ACTIVATING solution ala ATM in os9... I'm not a programmer, but I gotta ask: why is this so hard?
    I've used Font Dr to check and re-check ALL my fonts. Most of which are bought-and-paid-for professional versions. I keep a bare minimum of fonts activated at startup. I've read all the "How Fonts Work in OSX" articles, and I know what the heck I'm doing! But my font life on Panther, Tiger, Leopard and now Snow Leopard has been a living ****.
    YES the Helvetica disaster is a huge problem. But I think the issue is much, much larger.
    I spend literally HOURS of billable time each week dealing with this nightmare. When it comes time to design something, and find "the perfect font" for a headline, or a logo –which is something that used to fill me with glee– I'm consumed by dread. Having to yet again wade through this depressing morass of stupidity.
    Sorry for the rant. But this issue is literally EVERYWHERE on forums and message boards, but NOWHERE in MacWorld, ArsTechnica, CNET, etc, etc. AKA the kinds of pubs that could actually hold Apple's and the other companies feet to the fire on this issue.
    Something MUST be done.
    Darnit!

Maybe you are looking for

  • Can't Migrate from G4 to Intel Mac Mini

    Hi I have been unable to migrate files from my old G4 destop to my new Intel Mac mini. I wonder if anyone could help. I first tried first using the migration assistant on the Mac mini and used the G4 as a fire wire drive. Failed twice, the process fr

  • Message length in a message class

    hi all, I have  a error message to be displayed in report , its length exceeds 74 character. What is the way to increase the default length? or is there another way to display the error where length is greater

  • Validation for Document Type

    Hi, I want make a validation for document type wise posting for particular users like user ABC only post JV doc.type document. Please suggest me how I will make it. Thanks & Regards, Hemant Kumar Maurya

  • Headphones and iTunes question!

    Why is is when I plug my headphones into my Macbook Pro, iTunes automatically plays? And when I'm skyping with someone using my headphones, iTunes will play and the person I'm skyping with can't hear me. Even if I exit iTunes it'll come back up. Does

  • Why won't my iBook G4 turn on?

    A friend and I put his used hard drive in my iBook G4. It worked great for two weeks, but today, while I was typing a paper in Microsoft Word and a browser was open, it randomly shut off. It made an "ink" noise like a computer would if  it was sudden