Incorporating the export-button/dxo-export into the dx-data-grid component poses a challenge. I aim to have two dx-buttons alongside the dxo-export button, all aligned to the right and on the same line. https://i.sstatic.net/kxy4H.png
Upon examining my code, it appears that the dx-button elements are situated outside of the dx-data-grid container. This may be why they are not aligning as intended.
<dx-button id="gridRealistSelected"
icon="fas fa-clipboard-check"
[height]="34" [width]="40">
</dx-button>
<dx-button id="gridSharePlan"
icon="fa fa-share-alt"
[height]="34" [width]="40">
</dx-button>
<dx-data-grid id="gridContainer"
keyExpr="id"
[dataSource]="shoppingPlan">
<dxo-export
fileName="Rencana Belanja"
[enabled]="true"
[allowExportSelectedData]="false">
</dxo-export>
<dxi-column
dataField="ket"
caption="Keterangan">
</dxi-column>
<dxi-column
dataField="harga"
caption="Harga">
</dxi-column>
</dx-data-grid>