You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -60,6 +72,7 @@ export class TableNavigatableRowExampleComponent {
60
72
price: '5 EUR',
61
73
country: 'India',
62
74
description: 'A banana is an elongated, edible fruit – botanically a berry – produced by several kinds of large herbaceous flowering plants in the genus Musa.',
75
+
checked: false,
63
76
navigatable: true
64
77
},
65
78
{
@@ -70,16 +83,46 @@ export class TableNavigatableRowExampleComponent {
70
83
price: '5,5 EUR',
71
84
country: 'USA',
72
85
description: 'An apple is an edible fruit produced by an apple tree (Malus domestica). Apple trees are cultivated worldwide and are the most widely grown species in the genus Malus.',
To represent that the row is navigatable put icon or button to the last column and set <code>[activable]</code> and <code>[hoverable]</code> properties of the row
172
-
Hide navigation icons for the non-navigatable rows. Disable navigation buttons for the non-navigatable rows.
171
+
A row can be non-navigatable by setting the property <code>[navigatable]="false"</code>.<br><br>
172
+
If only some of the table rows are navigatable, you should indicate them with an arrow icon.<br>
173
+
To hide the arrow icon, leave out the <code>[glyph]</code> property, and set <code>[navigation]="false"</code> for the <code>fd-table-icon</code> directive.<br><br>
174
+
When a row uses button for navigation, the button will be disabled when the row becomes non-navigatable. <br><br>
173
175
Upon navigation event, either the user is taken to a new page, or the event is handled by an implementation such as <code>(click)="myFunction()"</code>
0 commit comments