AG-Grid horizontal scroll by dragging header - ag-grid

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.

Related

sap.uxap.ObjectPageLayout jumping buttons due to scrollbar

Example:
https://plnkr.co/edit/213BfJ4Q0shqBqaK
If there is no scollbar at the 2nd section for you, you might have a bigger screen than me and need to add a few more buttons.
If you set the useIconTabBar property of the ObjectPageLayout to true and have a section that needs scrolling but another that does not, the minimaize and pin button of the ObjectPageLayout Header are displaced each time you navigate between sections.
The scroll bar is across both header and content forcing the header to reajust its center, making the buttons move. This reajustment looks out of place in the otherwise static behavior of the header.
Is there a way to restrict the scrolling to just the content area of the ObjectPageLayout or fix the horizontal position of those buttons?
If there is a need to navigate often between the Sections the displacement can be very irretatiing for an enduser.

how to make a sticky headerTableView while having numerous headers in sections?

A goal of mine is to have an appearing/disappearing headerTableView - show on scroll up, hide on scroll down. I have tried setting tableView style to plain but then my section view headers are sticky and not just the headerTableView. Does anyone have an idea how to have an always showing/disappearing headerTableView regardless of scroll position (not just when I'm on top)?

iOS Interface Builder lock views to right of their table cells

In the form pictured below, as you can see, all of the items are aligned to the right in portrait mode. However, in landscape mode, the text box and switch do not move to the right with the detail items. The detail cells use an apple template, while the ones with the text box and switch are custom cells. How do I set it up in interface builder so that the switch and text boxes move over to the right?
I've been messing with this for a while with no success and haven't found any useful information googling.
If you're using a custom cell, you need to set the autosizing mask to keep the right margin fixed on the views you want to align right, something like this:

UITableView with dynamically set size

I have a UITableView as a subview in a ScrollView with other widgets around like a button. I'd like to put the button always at the end of the ScrollView and I'd like to have the UITableView to show dynamically more section. How and where shall I determine the Table size, correctly set it and visualize it?
From Interface Builder it seems that I can only set static size to the TableView (which of course limits the number of sections visible) and stick the button position to the bottom whether a rotation happens.
If you have only few simple controls after the table then I'd suggest putting them to the table itself and get rid of the unhealthy (in my opinion) combination of table view inside scroll view.
You might add the button you are talking about to the table's footer.
It may be done in the Interface Builder (drag-n-drop the button to the bottom of the table view) or in the code ([tableView setTableFooterView:myButton];).
If your button should be smaller that table's width then put it inside UIView and locate as you need.
You can also add table header in a similar way...

iPhone + gridview

Is it possible to have something like Data Grid or Grid View control in iPhone?
I've had to roll my own implementation, using a custom UITableViewCell with a configurable number of columns. I would just dequeue this for each row, and set the data appropriately, according to the column I'm showing. I even put this UITableView inside a UIScrollView, with vertical scroll disabled, in order to have the table stretch more than the visible screen, and be able to scroll horizontally to reveal the columns.
Arijasoft has got a static library
Arijasoft has got a static library using which developer can generate his own grid view implementation.
you can find the details here