Possible to add Sliding Data panels within a scroll view?

jdiperla

Member
Licensed User
Longtime User
Is there anyway to create a scroll view that can have panels within it? Basically, what I am trying to do is have a page that scrolls up and down and at the top have sliding panels that would go from left to right. When you scroll the page up or down, the panels also move out of view with the rest of the page.

Is this possible? I cant seem to do it.
 

mc73

Well-Known Member
Licensed User
Longtime User
I don't know if it would work well, but did you try to place a horizontalScrollView at the top of your scrollView instead of panels?
 
Upvote 0

jdiperla

Member
Licensed User
Longtime User
So actually hold on, Can I have it be this way:

|-Horizontal Scroll View 1(Parent)-----------------------------------|
|
|---------Horizontal Scroll View 2 (Child to view 1)------------------ -|
|---------Scrollview 1 (Child to HSV 1) ---------------------------- |
|-------------------------------------------------------------------|

Apparently, in the designer, neither of these items can be the child of the other, so I dont think the scrolling I want to do is possible with this system.
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
I'm afraid that it won't work because the first ScrollView will consume the Touch event.
But why don't you try it yourself ?
You must add the child scrollviews onto their parents internal scrollview panel in the code.

Best regards.
 
Upvote 0

roarnold

Active Member
Licensed User
Longtime User
Gents,

I am running into this in my app. I am trying to add a popup menu on a panel while utilizing HSV and panel. I am receiving a parent/child issue. Now, how to fix it. LOL.

Thanks,
Ron
 
Upvote 0
Top