-
Notifications
You must be signed in to change notification settings - Fork 24.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ListView Paging header stays on "Section 0" #141
Labels
Resolution: Locked
This issue was locked by the bot.
Comments
cc @nicklockwood - any ideas? |
@sahrens, not yet, but I'm looking. |
@sahrens I've figured it out. Fix incoming. |
@jaygarcia we'll get a proper fix landed as soon as possible. In the meantime, if you change line number 328 in ScrollView.js to
It should fix the problem for you locally. |
@nicklockwood The latest updates have resolved the issue. Many thanks. |
vjeux
pushed a commit
to vjeux/react-native
that referenced
this issue
Apr 13, 2015
Summary: The sticky headers in ListView weren't working correctly, as reported here: facebook#141 It turns out that this was because the property was only ever being set to [1] (an array with a single index value of 1, reprenting the first header) so all the other headers were treated as regular rows and were scrolling under the first header. It turns out that *that* was because the diffing function for stickyHeaders was wrong, or, more precisely, was a function when it should have been an object containing a function. Test Plan: Run UIExplorer. Verify that paged scrolling example works.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Just did a pull, See below.
The text was updated successfully, but these errors were encountered: