Notice: The Monaca & Onsen UI Community Forum is shutting down.

For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.

Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.

BUG: Chevron View broken in beta 9



  • Sorry didn’t find a proper way to post a bug. Think it will be wrong here, feel free to delete.

    The chevron view seems to be broken with beta 9.

    0_1459515467208_Bildschirmfoto 2016-04-01 um 14.57.15.png


  • Onsen UI

    @Flosef Thanks for reporting! I will update the docs with the next code.
    If you want to use the only CSS version you can do it this way:

    <ul class="list">
      <li class="list__item list__item--chevron">
        <div class="list__item__center">Chevron Item</div>
      </li>
    
      <li class="list__item list__item--chevron">
        <div class="list__item__center">Chevron Item</div>
      </li>
    </ul>
    

    If you want to use components:

    <ons-list>
      <ons-list-item modifier="chevron">
        Chevron Item
      <ons-list-item>
    </ons-list>
    


  • @Fran-Diox
    Perfect. Thank you!