-
13 Nov 2012 9:10 AM #1
Unanswered: Infinite List DOM Nodes - ST2.1
Unanswered: Infinite List DOM Nodes - ST2.1
I'm trying to make an infinite list with alternating rows highlighted. The problem I'm having is there is an odd number of nodes in the list's DOM tree. When the first node wraps back around, there are two highlighted nodes next to each other. It seems the easiest solution is to render an even number of list item nodes - is it possible to set the number nodes that are rendered?
-
15 Nov 2012 5:58 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
- Answers
- 3155
How are you figuring which row is being highlighted?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
19 Nov 2012 7:04 AM #3
I am using css, something like this:
Code:.alternating-list .x-list-item:nth-child(even) { background-color: #eeeeee; }


Reply With Quote