how to see scroll panel bottom area when i pressed a button - gwt

I have a requirement that i want to go to the middle area or bottom area of my scroll panel when I pressed a button ,but not from the scrolling. is it possible to do?..if so how can I reach my goal.
thanks in advance

Use setVerticalScrollPosition() along with getMaximumVerticalScrollPosition() to go to the end.
For the middle part you have to calculate things by your own getting clientHeight and scrollHeight of the getScrollableElement().

Related

Unity Panel Interaction Issue

I have two panels in unity 2d directly overlapping each other and they use scroll panels so I can scroll down. I have it set so when one is accessed, the other is pulled up, but when they swap the other panel is grey and I cannot interact with it, but when I attempt to scroll the other panel scrolls instead, even though it is hidden and turned off.
I suspect that this is a bug in the code. It's possible, that when the user presses the scroll button in the first panel, and then releases the button, the second panel's scroll button thinks, it's already been pressed by the user, when in fact it isn't.
Set it up in such a way, that when you release the button on a scrollbar (the first scroll bar), it resets the click on the scrollbars connected to it (a second scroll bar).

Unity resize layout

My unity timeline looks like this after clicking on somthing wrong i dont remember
any solutions please ?My Unity Timeline
Make sure that on the "3 dots" on the right you have evryinthing with a tick and press the buttons on the left until you find your previous layout that you preferred.
Move your mouse cursor on the vertical scroll of the timeline.
Drag the handle of the scroll to the bottom
Move your mouse cursor on the bottom line of the Animation Track panel.
After the cursor is changed to the vertical arrow, then drag it to the top
Take a look at this
If it doesn't work, let me know

How to show a popup inside a scrollPane javafx

I have some nodes in the content of a scrollPane.
With nodes mouse pressing , a popup is shown and is positioned in the required X and Y.
Well , when scrolling , the popup is always fixed , as it is positioned according to the scene.
Is it possible to show the popup inside the scrollPane , so when scrolling , the popup scrolls too .
Yes, it is possible for the pop-up location to track the scroll position of the scroll pane. I am not going to write the code for that here.
One consideration you will have is what to do with the pop-up if the user scrolls such that the pop-up ends up outside the visible region of the scroll pane (I'm guessing the pop-up would then be hidden and cease tracking the scroll pane location).
Do consider your design and decide if you really need a pop-up or not, or if you can just place a node in the group that maintains the content for the scroll pane. Because, if you did that rather than using a pop-up, then the scroll pane would automatically scroll the node in the group as it scrolled around the group.

How can I disable a arrow button at the last slide of a carousel

->Am the new learner of SAPUI5,am trying image popup with carousel,Now How can I disable a arrow button at the last slide of a carousel(No limit of images)?Thank you..
If you are using sap.m.Carousel, there is a property loop which indicates if there will be a loop in the images of the Carousel.
Defines whether the carousel should loop, i.e show the first page after the last page is reached and vice versa.
Link:
https://sapui5.hana.ondemand.com/sdk/explored.html#/entity/sap.m.Carousel/properties
If you set the "loop" property of Carousel control to false, you will not see arrow icons at the beginning to left and at the end of the image set to the right.
Here is a carousel with loop set to true to display arrows always
<Carousel id="mockupCarousel" loop="true" items="{ProjectMockups}">
And this will hide arrows for the first slide and for the last slide image
<Carousel id="mockupCarousel" loop="false" items="{ProjectMockups}">

Button with lost focus using PerspectiveTrasnform

Well, I make a Pane based on an example of JavaFX samples (Display Shelf), I put Panes with Labels, Buttons, ComboBox, TableView where's the ImageView. It is working, when I click on Pane, it does the animation correctly, but the buttons that I put in vertical on Right of Pane, receive the focus out of where they are. When I move the mouse button, nothing happens, but if I move the mouse to down of it, I can click in the button that so reveice the focus. The local where I have to move the mouse to button to receive the focus is increasingly far (down) if the button is below the other.
I'm using the Perspective Transform of JavaEX and all is in JavaFX Samples, just changed some params of size (width and height). This effect may be interfering in focus? Or can be another problem? If anyone already had this problem please help me. Thanks.