Enabling horizontal scroll in UIWebview

Hi all,
Is there any way to load a pdf document in a UIWebview so that it can
scroll horizontally instead vertically?
Is it possible?..
If so pls some one gimme me the way to do this..
I wanna pick the words in pdf as we can do in a webview and also I wanna
enable search for the word as we can do in a webview. So having an image and
loading it in a webview wont suit my requirements, I hope so. So I did load
pdf in a webview. Now my requirment is to load the same such that it could
scroll in a horizontal pattern.
Can anyone help me??????

With the current version of VC there is no horizontal scroll bar in the Flex tables possible.

Similar Messages

  • Tabs in a page enable horizontal scrolling,How NOT to do that?

    I have a page with 17 tabs, each tab has a different permission group, so each user can see only the tab for his group.
    Some users have access to more than one group, so they can see more than one tab.
    When a user with more than 5 or 6 tabs logs in, that number os tabs enables the horizontal scrolling, making the page looks horrible, and some tabs end up outside the visible area.
    I need to 'break' the tabs in lines, so it does not enable the horizontal scrolling.
    Is it possible to do that?
    Is its possible, how can I do that???

    the best way how NOT to do the scrolling is to have shorter tab names or view on a higher resolution. there is no way to make them default to a new line of necessary.
    Frankly, I would look back at the layout and design aspects of the page because 17 tabs is a TON of information to download each time you access a page even if you cant see them all.
    You could have the information separated as pages instead of tabs or use item level security instead of tab level to fix this problem.

  • Mighty mouse enable horizontal scrolling

    I've a mighty mouse and OS X 10.6.8 and I can't scroll horizontal. I've tried to change the mouse no difference. I've tried to switch between horizontal and 360° scrolling, disable scrolling...but I can't. That's really boring.
    Anybody who can help me please?

    I think it is an plugin or else...that destroyed the horizontal scrolling. I had a harddiskcrash and I recoverd via timemachine from last december, (10.6.8) was installed. and it worked again. after then i installed some updates and it's not working again....

  • How to get the Horizontal Scroll Bar for a Table?

    Hi All,
    As per my requirement, I am displaying several records in a Screen in a Tabular Format. But here I have to show 21 Columns in that table which is too high. I am able to display it but due to it I am getting a Horizontal scroll bar for the whole screen since all the columns are not getting displayed in the normal window screen space. But its looking too odd since once I am scrolling it to right the columns are getting displayed but the above Header Bar and Global buttons are not displaying, they are bound to the normal screen space.
    Is there a way to have a Horizontal scroll bar only for that table instead of the entire screen so that on scrolling that bar only the table rows will beshifted ant got displayed?
    With Thanks
    Kumar Gautam

    try this approach.
    include a raw text item before and table item.
    include the appropriate HTML tags in raw text item to enable horizontal scroll
    --Prasanna                                                                                                                                                                                                                                                                                                                                   

  • Horizontal scroll bar on text item

    Hi,
    I have a text item. I have enabled Vertical Scroll Bar. I need to enable Horizontal Scrolling as well on the text item. How is this possible?
    Thanks

    Yes, you have to write a PJC that extends VTextArea, then add the following instruction in the init() method:
    this.setHDisplayPolicy(1);You have also to set the Forms Wrap type property to none.
    Francois

  • Horizontal Scroll Bar in Power Pivot?

    Good Afternoon,
    I have recently installed PowerPivot and began importing my T-SQL queries into it, unfortunately for queries with a large number of columns, I am unable to see a horizontal scroll bar, although I do have a vertical scrollbar.  I can move my cursor to
    the right, however it just disappears off screen.  Is there any way to add a horizontal scrollbar to the PowerPivot window?

    Thanks for providing the screen shot. This behaviour isn't normal; the horizontal scroll bar should definitely by present in this scenario.
    Does re-sizing the Power Pivot Window cause the horizontal scroll bar to appear?
    Does toggling between the Data View and Diagram View make a difference?
    Does disabling and then re-enabling the Power Pivot Add-in make any difference?
    Does the same thing happen if you create a new workbook and load the same table?
    Have you already tried a repair on your Office installation?
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com
    Blog: http://www.nimblelearn.com/blog
    Twitter: @nimblelearn

  • Horizontal scrolling doesn't work with ItemsStackPanel in ListView(GridView)

    Hi,
    In Win 8.1 App Store Project I have a ListView with fixed width and listen for ContainerContentChanging event because of performance issues.
    When ListView width is less than content width, horizontal scrolling doesn't work. If we change ItemsStackPanel to VirtualizingStackPanel, horizontal scrolling works fine. But ContainerContentChanging doesn't work with VirtualizingStackPanel.
    Is it possible to make horizontal scrolling work with ItemsStackPanel?
    Here simple example to reproduce this problem:
    <Page
    x:Class="App8.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App8"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Page.Resources>
    <DataTemplate x:Key="ContinuousViewItemTemplate">
    <Border Width="800"
    Background="Green"
    Margin="10"
    Padding="5">
    <Border x:Name="root" Height="800" Background="{Binding}"/>
    </Border>
    </DataTemplate>
    <Style x:Key="ListViewStyle1" TargetType="ListView">
    <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Visible"/>
    <Setter Property="ScrollViewer.HorizontalScrollMode" Value="Enabled"/>
    <Setter Property="ItemTemplate" Value="{StaticResource ContinuousViewItemTemplate}"/>
    </Style>
    </Page.Resources>
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="100"/>
    <ColumnDefinition Width="500"/>
    <ColumnDefinition/>
    <ColumnDefinition Width="500"/>
    <ColumnDefinition Width="100"/>
    </Grid.ColumnDefinitions>
    <ListView Style="{StaticResource ListViewStyle1}" Grid.Column="1">
    <SolidColorBrush Color="Red"/>
    <SolidColorBrush Color="Cyan"/>
    </ListView>
    <ListView Style="{StaticResource ListViewStyle1}" Grid.Column="3">
    <ListView.ItemsPanel>
    <ItemsPanelTemplate>
    <VirtualizingStackPanel/>
    </ItemsPanelTemplate>
    </ListView.ItemsPanel>
    <SolidColorBrush Color="Red"/>
    <SolidColorBrush Color="Cyan"/>
    </ListView>
    </Grid>
    </Page>

    Hi Mikhail Maksyuta,
    Welcome back!
    Yes, you are right! I have reproduced it on VS 2013 professional.
    I will report it as bug, Thanks for your valuable suggestions!
    If you have any other questions about this, please feel free let me know!
    Thanks again!
    Regards! 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [UNSOLVED] Synaptics Touchpad & Firefox: Horizontal Scroll

    Hey guys.. i'm having a problem with my laptop's Synaptics Touchpad and Firefox.
    I can't seem to get my touchpad to allow me to scroll horizontally in the browser (when, say, there's a wide image on a page for instance). Whenever I try to scroll by sliding my finger side-to-side on the bottom edge of my touchpad, the page scrolls up and down, just like the vertical scroll on the right edge!
    At first I thought it was a problem with horizontal scrolling on the Synaptics driver in general, but I discovered that if I have something like File Browser open, I can scroll horizontally with the touchpad, so the problem lies ONLY with Firefox.
    I have looked for solutions already and everything I find only talks about a possible issue where Firefox might treat the Touchpad's horizontal scrolling and Forward and Back actions and how to fix this. But this is not the problem I am having. But I do have mousewheel.horizscroll.withnokey.action set to 1 in my about:config, which from what I've read is supposed to be correct to allow h. scrolling.
    Any ideas?
    Last edited by flintmecha (2008-12-01 23:24:37)

    FYI, with my Synaptics touch pad and firefox, it works, but I have the mousewheel.horizscroll.withnokey.action set to 0 (default). In fact, all of the settings in about:config with 'mousewheel' in them are all at the default setting. I just had to setup the xorg.conf (old way) or the the /etc/hal/fdi/policy/11-x11-synaptics.fdi (new way) correctly to enable the horizontal scrolling.
    Good luck!
    Scott

  • Horizontal scroll for Tree component scrolls too far right

    I've enabled the horizontal scroll bar for the Tree component.
    But the scroll bar allows the user to scroll very far to the right into blank space.
    The maximum width of my components measures 124px, as calculated by measureWidthOfItems(0,0), and I've verified this by measuring pixels of a screen shot.
    I have tried adding an event to set the Tree.maxHorizontalScrollPosition, and I traced the value that I'm setting it to, and I also traced the value that it actually assumed after I set it. Both are 124px.
    So I can't understand the behavior. I can scroll something more like ~400px to the right with lots of blank space.
    Any ideas why?
    Thanks,
    David

    Hmm, I'm not sure why this works, but it works, so for completeness here's what I did (in case anyone else runs across this same thread):
    var measWidth:Number = myTree.measureWidthOfItems(0,0);
    filesTree.maxHorizontalScrollPosition = measWidth - myTree.width;
    I call the above code whenever the window is resized (in my app there are 2 places that can cause a resize of the window, I manually added calls to a function with the above code). There is also an example out there that resizes any time the window is resized, but if you do this then you really can't have liveDragging=true in a DividedBox (which I have) because the cost of resizing is very high and overtaxes the cpu when called many times consecutively. I just call it when the dragging is finished (that way I have live dragging enabled, but it only updates the scroll bars when the user stops dragging, which is visually acceptable).

  • Horizontal scrolling. Help with large images.

    Putting together a .pdf publication for iPad.
    I have content that fits a standard iPad format BUT I also have these very long timelines (170cm x 21 cm). These need to be displayed zoomed in -  with the reader swiping right to accessing the remainder of the content. So a horizontal scroll! Whenever I test it on the iPad it display the full image (so zoomed out and tiny). The other images are displaying fine.
    So how do I make sure I view them as I require?
    Thanks!

    I also need this feature, to view and mark up street plans that are long narrow landscape format pages with "match lines" at the left and right sides.  What I want is similar to Acrobat's existing "Enable Scrolling" -- but in the horizontal direction.  Planners need this for road and path plans.  Musicians and composers need this for viewing multi-page sheet music so they can browse the entire "timeline" of the piece.  And as the OP notes, schedule planners need this for reviewing timelines such as Gantt charts.
    Adobe, please add this feature.  I'll gladly pay for an upgrade (currently using Acrobat Pro XI Mac).

  • DataGrid Horizontal Scroll Problem when datagrid contains Item renderer

    I have datagrid with horizontal scroll policy enabled. Grid
    contains some item renderer also.One of the item renderer is
    datefield when i select a date from the datefield and say the
    adjacent cell of the grid also contain datefield itemrenderer
    and i am selecting date from that itemrenderer also.When i
    scroll horizontally the date in the itemrender changes to any one
    of the two itemrenderer.Some time it works fine.I am getting the
    issue for combobox itemrender also.Can any one help me to solve
    this issue.

    "happybrowndog" <[email protected]> wrote in
    message
    news:ge11ag$jdo$[email protected]..
    >
    quote:
    Originally posted by:
    ravi_bharathii
    > I have datagrid with horizontal scroll policy enabled.
    Grid contains some
    > item
    > renderer also.One of the item renderer is datefield when
    i select a date
    > from
    > the datefield and say the adjacent cell of the grid also
    contain datefield
    > itemrenderer
    > and i am selecting date from that itemrenderer also.When
    i scroll
    > horizontally
    > the date in the itemrender changes to any one of the two
    itemrenderer.Some
    > time
    > it works fine.I am getting the issue for combobox
    itemrender also.Can any
    > one
    > help me to solve this issue.
    >
    > Ravi, I am having a similar problem. I subclass a
    TextInput as an
    > itemrenderer for a column in a datagrid. My subclassed
    TextInput checks
    > to see
    > the value in the overriden set() method, and depending
    on the value, sets
    > the
    > background color of the TextInput to green. When the
    datagrid scrolls
    > horizontally, some unrelated cell colors also change
    green and some of the
    > data
    > gets duplicated in the cells. The underlying data
    provider's data is not
    > confused however. Seems the rendering is screwed up when
    the Datagrid
    > scrolls.
    >
    > Did you find a solution to this problem? I think
    Datagrid is a piece of
    > screwed up code.
    http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf
    Q2

  • BP Transaction Horizontal scroll bar is not working

    Hi,
    Horizontal Scroll Bar Not working for Marketing Attribute after Upgradation from Crm 6.0 to EHP 7.02
    Scroll bar need to be Enabled or active Please suggest any OSS Note or any Idea in doing this .Please help me out
    Thanks & Regards
    Srinivas

    Hello,
    Not sure to understand the issue here. If you are using CRM7 EHP2, you should user WebUI/IC to manage BP. SAP GUI is no longer supported.
    Best regards,
    Sylvain AGUETTAZ

  • Horizontal Scroll Bar Management InfoProviders

    Hi all,
    I see the horizontal scroll bar in management of InfoProviders only in some columns. Can anyone help me?
    Best regards.
    Simone.
    Edited by: Simone.Pompei on Feb 16, 2011 1:45 PM

    Type '''about:addons'''<Enter> in the address bar to open your Add-ons Manager.
    Hot key; '''<Control>''(Mac:<Command>)''<Shift> A)'''
    In the Add-ons Manager, on the left, select '''Extensions.'''
    Disable a few add-ons, then '''Restart Firefox.'''
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    If the problem continues, disable some more (restarting FF). Continue until
    the problem is gone. After, you know what group is causing the issue.
    Re-enable the last group '''ONE AT A TIME''' (restarting FF) until the problem returns.
    Once you think you found the problem, disable that and re-enable all the
    others, then restart again. Let us know who the suspect is detective.

  • Visual Composer table horizontal scroll bar

    Hi Experts,
    is it possible to have horizontal scroll bar in visual composer iview?
    is it possible to lock initial n columns from scroll in VC iview?
    if possible the pls tell how?
    Thanks in advance
    Anupam

    Hi Anupam..
    The below info may helps you .......
    Visual Composer produces applications in a declarative form, thereby enabling completely code-free execution mode for multiple runtime environments. It provides full application lifecycle support by maintaining the connection between an application and its model throughout its lifecycle. Visual Composer is designed with an open architecture, which enables developers to extend its design-time environment and modeling language, as well as to integrate external data services.
    As a result, Visual Composer modelers increase productivity by reducing their development effort time from weeks and months to days. Domain experts gain the means to express their requirements directly rather than conveying them to developers. This narrows the gap between application definition and implementation.
    Starting with a blank canvas, the Visual Composer user draws the application in Visual Composer Storyboard (workspace), without writing a single line of code. Since no traditional programming skills are needed, business process experts can prototype, design and produce entire applications.
    A typical workflow for creating, deploying and running an application using Visual Composer is:
    Create a model
    Discover data services and add them to the model
    Select necessary UI elements and add them to the model
    Connect model elements to define the model logic and data flow
    Edit the layout
    Arranging the UI elements and the controls of the application on forms and tables.
    Deploy the model
    This step includes compilation, validation and deployment to a selected environment.
    Run the application
    The application can run using different runtime environment (such as Adobe Flex and HTML)
    Modeling Business Intelligence Data with Visual Composer - Part I
    Modeling Business Intelligence Data with Visual Composer - Part II
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    http://help.sap.com/download/netweaver/nw04/visualcomposer/VC_60_SolManGuide.pdf
    Creating Model:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Creating Portal Content:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Customizing VC toolbar:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/4a7e40417c6d1de10000000a1550b0/frameset.htm
    Regards
    Sudheer

  • ANN: Horizontal Scroller Magic Released

    [A commercial Dreamweaver Extension]
    http://www.projectseven.com/products/tools/hscroller/index.htm
    Horizontal Scroller Magic enables you to instantly create
    Horizontal
    scrolling boxes that visually complement your page design.
    They look cool,
    behave like a finely tuned machine and solve some usability
    and
    accessibility flaws found in many DHTML or Ajax scrollers.
    Automated Insertion anywhere on your page
    Multiple scrollers per page
    Supports flexible widths
    Choose from several style themes and control configurations -
    including
    graphical icons or pure text
    Scrolling type options include normal, looping, auto-reverse,
    and animated
    carousel
    Edit styles using Dreamweaver's built-in CSS editing tools
    Standards-conformant markup
    All content accessible and visible when JavaScript is
    disabled
    Keyboard-enabled scrolling
    Toggle feature to hide scroller controls and show all content
    Mouse wheel support in modern browsers
    Meets major Accessibility checkpoints
    Search engine-friendly
    Free Technical Support
    User Guide
    The PVII Team
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"

    Hi Kim,
    It could be any number of things. Text contrast or frame
    rate, for example.
    Those are configurable so that people can set things up
    optimized for their
    best or worst case browser scenarios.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "kim" <[email protected]> wrote in message
    news:fk64k2$3ss$[email protected]..
    > Simple style flickers for me in FF2/XP
    >
    > PVII skrev:
    >> [A commercial Dreamweaver Extension]
    >>
    >>
    http://www.projectseven.com/products/tools/hscroller/index.htm
    >>
    >> Horizontal Scroller Magic enables you to instantly
    create Horizontal
    >> scrolling boxes that visually complement your page
    design. They look
    >> cool, behave like a finely tuned machine and solve
    some usability and
    >> accessibility flaws found in many DHTML or Ajax
    scrollers.
    >>
    >> Automated Insertion anywhere on your page
    >>
    >> Multiple scrollers per page
    >>
    >> Supports flexible widths
    >>
    >> Choose from several style themes and control
    configurations - including
    >> graphical icons or pure text
    >>
    >> Scrolling type options include normal, looping,
    auto-reverse, and
    >> animated carousel
    >>
    >> Edit styles using Dreamweaver's built-in CSS editing
    tools
    >>
    >> Standards-conformant markup
    >>
    >> All content accessible and visible when JavaScript
    is disabled
    >>
    >> Keyboard-enabled scrolling
    >>
    >> Toggle feature to hide scroller controls and show
    all content
    >>
    >> Mouse wheel support in modern browsers
    >>
    >> Meets major Accessibility checkpoints
    >>
    >> Search engine-friendly
    >>
    >> Free Technical Support
    >>
    >> User Guide
    >>
    >
    > --
    > Kim
    > ---------------------------
    >
    http://www.geekministry.com
    >

Maybe you are looking for