Fix views field rendering
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #2846298. --> Reported by: [Frando](https://www.drupal.org/user/21850) >>> <p>Given you want to build a view that'd look like this</p> <pre> - Event A&nbsp; 12-10-2011 <br> - Event B&nbsp; 12-11-2011<br> - Event A&nbsp; 12-12-2011<br> - Event B&nbsp; 12-13-2011 <br> - Event A&nbsp; 12-14-2011 <br> - Event B&nbsp; 12-15-2011</pre><p> you'd currently get that:</p> <pre> - Event A&nbsp; 12-10-2011 <br> - Event B&nbsp; 12-11-2011<br> - Event A&nbsp; 12-10-2011 <br> - Event B&nbsp; 12-11-2011<br> - Event A&nbsp; 12-10-2011 <br> - Event B&nbsp; 12-11-2011</pre><p>The problem lies in the way Views renders fields. It actively prevents rendering the same field on the same entity multiple times for performance reasons. I debugged it for an hour or two and there seems to be no way to circumvent that within the Views entity field rendering system. Or did I miss something?</p> <p>The solution is, I think, a custom views field handler that does render each row seperately.</p>
issue