Right now kendo's system for alternating rows is to specify rowTemplate and altRowTemplate. For any non-trivial row template, this makes for a big ugly DRY violation as you copypaste the entire template just to give it a different css class and leave it otherwise identical. Any future changes to the template have to be made to both copies, and any potential template issues have to be tested on both even and odd numbered rows. If rowTemplate received whether it's an alternate row as a template parameter, it would be easy to do common things on alternating rows without ever needing to define altRowTemplate.