List, right arrow not added

From doc: small right arrow will automatically be added.

CodePen

Does not seem to be added (1.0.0-beta.3)
beta.1 seem to add the arrow, didn’t found in release notes that it was removed

Hi!

List item nav arrows are no longer automatically added by design, this commit explains it further. Add this after the item title:

<i class="icon ion-chevron-right icon-accessory"></i>

Cheers!

2 Likes

Thanks that it work and the change make sense

I guess need to update the docs

Agreed. The docs still need to be updated. I had to spend some time in the docs before Google led me to here.

1 Like

I think you should let us help you updating the documentation!

Hi rdelafuente,

I have add the code but its not aligned how to make this i am new to this.

Thanks in advance…

cheers….

Hi @Bala

You must add the class item-icon-right to the parent container in addition to <i class="icon ion-chevron-right icon-accessory"></i>

Look at this example:

1 Like

Hi @rdelafuente

Its coming like charm…
I didn’t use the ion-item because i need to give link to another view when item is tapped.
so i use anchor tag. by using the ion-item how can i give link to another view…

cheers
Bala

You can use ng-click="your_function(your_params)" or ui-sref

Cheers!

like rdelafuente mentioned:

Use a ng-click and navigate in your controller :wink:

Greets