Skip to content

Commit

Permalink
TileView: Add "Back" button to return to main tile view
Browse files Browse the repository at this point in the history
(reference #56)
  • Loading branch information
piotrzarzycki21 committed Jun 9, 2024
1 parent 42349d4 commit b790174
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@
}
}
private function onBackClick(event:Event):void
{
this.resetDocumentationForm();
}
private function onAddItem(event:Event):void
{
this.proxy.selectedIndex = -1;
Expand Down Expand Up @@ -198,6 +203,7 @@
<js:MaterialIcon text="{MaterialIconType.REFRESH}" />
</j:icon>
</j:IconButton>
<j:Button localId="backButton" text="Back" click="onBackClick(event)"/>
</j:HGroup>
<j:HGroup percentWidth="100" itemsHorizontalAlign="itemsLeft" gap="1" includeIn="contentState">
<j:style>
Expand Down

0 comments on commit b790174

Please sign in to comment.