ExSDK toast control for SAP UI5/Fiori applications. Supports multiple visual variants.
ux7.control.ExToastsap.ui.core.Control<ExToast /><VBox id="idToastVBox" class="sapUiMediumMargin" width="100%">
<!-- Temel tipler -->
<ux7:ExTitle id="idTriggersExTitle" text="Toast Trigger Buttons" level="h3" variant="section" />
<FlexBox id="idTriggersFlexBox" wrap="Wrap" class="sapUiSmallMarginBottom">
<ux7:ExButton id="idInfoBtn" text="Info Toast" type="primary" press="onToastInfo" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idSuccessBtn" text="Success Toast" type="secondary" press="onToastSuccess" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idWarningBtn" text="Warning Toast" type="ghost" press="onToastWarning" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idErrorBtn" text="Error Toast" type="danger" press="onToastError" />
</FlexBox>
<!-- Zengin: başlık + aksiyon (NEW) -->
<ux7:ExTitle id="idRichExTitle" text="Rich — title + action (NEW)" level="h3" variant="section" />
<FlexBox id="idRichFlexBox" wrap="Wrap" class="sapUiSmallMarginBottom">
<ux7:ExButton id="idUndoBtn" text="Sil + Geri Al" type="soft-danger" press="onToastUndo" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idRetryBtn" text="Yükleme + Tekrar" type="soft-warning" press="onToastRetry" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idGlassBtn" text="Glass Toast" type="glass-dark" press="onToastGlass" />
</FlexBox>
<!-- Custom icon (NEW) -->
<ux7:ExTitle id="idCustomIconExTitle" text="Custom IconPool icon (NEW)" level="h3" variant="section" />
<FlexBox id="idCustomIconFlexBox" wrap="Wrap" class="sapUiSmallMarginBottom">
<ux7:ExButton id="idDownloadBtn" text="İndirme bitti" type="primary" press="onToastDownload" class="sapUiSmallMarginEnd" />
<ux7:ExButton id="idMailBtn" text="Yeni e-posta" type="secondary" press="onToastMail" />
</FlexBox>
<!-- Instances -->
<ux7:ExTitle id="idInstancesExTitle" text="Instances" level="h3" variant="section" />
<ux7:ExToast id="toastInfo" message="Bilgi mesajı" type="info" position="bottom-right" duration="3500" closable="true" />
<ux7:ExToast id="toastSuccess" message="İşlem başarılı" title="Kaydedildi" type="success" position="top-right" duration="3000" closable="true" />
<ux7:ExToast id="toastWarning" message="Uyarı mesajı" type="warning" position="top-center" duration="4000" closable="true" />
<ux7:ExToast id="toastError" message="Hata oluştu" type="error" position="bottom-center" duration="5000" closable="true" />
<ux7:ExToast id="toastUndo" title="Öğe silindi" message=""Q3 Bütçe" arşive taşındı." type="info" position="bottom-right" duration="6000" actionText="Geri Al" action="onUndoAction" />
<ux7:ExToast id="toastRetry" title="Yükleme başarısız" message="rapor-final.pdf gönderilemedi." type="error" position="bottom-right" duration="6000" actionText="Tekrar Dene" action="onRetryAction" />
<ux7:ExToast id="toastGlass" title="İndirme tamamlandı" message="video-4k.mp4 · 248 MB" type="success" glass="true" position="top-right" duration="4500" />
<ux7:ExToast id="toastDownload" title="İndirme tamamlandı" message="rapor-final.pdf hazır." type="success" icon="sap-icon://download" position="bottom-right" duration="4000" />
<ux7:ExToast id="toastMail" title="Yeni e-posta" message="3 okunmamış mesaj." type="info" icon="sap-icon://email" position="top-right" duration="4000" actionText="Aç" action="onMailAction" />
</VBox>