The select popover can't scroll with grid - element

I use ag-grid and element-ui in my application, and use el-select to cellEditor render, when I trigger the editor and scroll grid body-viewport, the popover for el-select can't scroll with grid.
How I can solve this?

Related

AG-Grid horizontal scroll by dragging header

Is it possible to scroll horizontally the AG-Grid table by dragging header?
I am using ag-grid-react v26. According the documentation I can't find anything related with manual scroll and overriding dragging behaviour. I tried to add dragging event listener to the header and programmatically scroll content but it's not working according specific table implementation.

How does Mui Tabs decide to show scroll buttons

Is there any way to find out when scroll buttons are visible on the UI.
I want to show a dropdown whenever scroll buttons are visible on MUI Tabs

Overlaying buttons on tableviewcell with collectionview inside

I have implemented a image slider with a UICollectionView inside a UITableViewCell which the user can slide to left and right. I want to create two buttons on this UITableViewCell so the user can also tap on that buttons to slide the images.
I've done this by adding the buttons on the images inside the UICollectionViewCells but with that the buttons also are swiping when the user swipes to left or right or taps the buttons.
I tried to fix the buttons on the UITableViewCell, but anyhow the buttons does not get displayed, when I do it like this.
So how can I achieve this, that the buttons are fixed inside the UITableViewCell and the UICollectionView inside the UITableViewCell can move it cells without effecting these two slider buttons?
At storyboard it looks like this:
Can't rearrange the buttons:
Add the buttons directly to the content view of the table view cell, don't add them to the collection view. That way they will stay in position. If you can't see them it's possible that they were underneath the collection view and were obscured. Change the order of the views in interface builder by dragging and dropping in the document outline. This changes which view is on top.
The document outline is the view you have posted as a screenshot in your question, starting at "brandsCollectionTableViewCell". The outline contains the subviews of the cell. Views with the same parent, like the image view, label and buttons currently shown in the outline, will be ordered "on top" of each other by their position in the list. So you drag the items in that list to change the order, or select the buttons then go to Editor -> Arrange -> Send XX to adjust the position.
Use the Xcode view hierarchy debugger to help you understand what is happening (that's this button on the debugging toolbar):
The 3D view will let you see where your "missing" buttons are.
If you really want to include the buttons in the collection view, then you need to use a custom collection view layout implementing floating views. That's not a straightforward task, but I've written something about it here.

Scroll to selected row in CellTable

I have a GWT CellTable contained in a ScrollPanel. The CellTable is set to use a SingleSelectionModel<T> I am programatically setting the selected row, which is working fine. However, the cell table isn't scrolled to the selected row. Is there a way I can both select the row and scroll so the selected row is visible?
Andrei was on the right track, but setScrollTop(int) gives the number of pixels to scroll, not the index to scroll to. What works is:
myTable.getRowElement(index).scrollIntoView();
this adjusts the scrolling so that the element is in view. Note that if your table scrolls horizontally, scrollIntoView() will scroll it all the way to the right in an attempt to show all of the cell. I didn't want this behavior, so I subsequently called:
myScrollViewThatContainsCellTable.scrollToLeft();
Try
myTable.getRowElement(index).setScrollTop(0);
where index is the index of a selected row.

iPhone/iPad Enable only horizontal&Vertical swipes in a CoverFlow in TableViewCell

I have a table view and each cell of it contains a coverFlow (implemented using OpenFlow Lib).
When I swipe(or scroll) left to right to select an item in the coverflow, I have to be very careful, because if I swipe not so horizontally, it will result in the tableView being scrolled(slightly up or down) and the coverFlow delegate won't react to the change of selection.
So I want the view only to detect left and right swipe gesture which will result in changing selection of coverFlow, and Up and Down swipe which will make the table to scroll down!Here is a basic concept of the view I just mentioned
Any Ideas how I can achieve this?
you should check this doc :
http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/GestureRecognizers/GestureRecognizers.html
Create homemade event handlers and implement the canBePreventedByGestureRecognizer and canPreventGestureRecognizer methods.