Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
1k views

I've built a C# Winforms App in which I've included toast notifications. The notifications work fine. However, when I change the ToastScenario to Reminder, the toast does not stay on screen like the ...
NDRugby's user avatar
  • 71
0 votes
1 answer
8k views

I'm trying to show a ToastNotification in a brand new .Net Maui App. I'm following the instructions from Microsoft about Sending a local toast notification. I'm able to successfully create one with ...
gurrenm3's user avatar
  • 330
0 votes
0 answers
398 views

Using Bootstrap 5, I have the following Toast message placed at the end of my HTML file: <div class="toast-container position-absolute p-3 top-0 end-0" style="width: 150px;"&...
rphello101's user avatar
  • 1,791
2 votes
0 answers
601 views

Good day, good people! I want the Material-UI Snackbar component on some pages of my project to pop up in the center of the screen vertically. By default, the Material-UI allows the Snackbar to be ...
Yerzhan's user avatar
  • 21
0 votes
1 answer
177 views

I need to create a toast message dialog in my app, basically i have a TableView and within it i have a TableViewCell. I need that when the user press the cell to go to the DetailViewController the ...
Mateo Valencia Minota's user avatar
-4 votes
1 answer
967 views

why does standard form Toast (also in current google android online docs) give "false caller" error for an app in Android compileSdkVersion/targetSdkVersion 28. Using getApplicationContext() ...
Goofyseeker311's user avatar
0 votes
0 answers
477 views

I don't know how to explain this clearly, the following code notification shows on clicking the link/an href element. I would like to load it on page load itself, without click, how ? <a href="...
Anusree's user avatar
0 votes
2 answers
545 views

I'm new in Django and I'm creating a CRUD. However I want to show a Success message in a Toast for successfully submit, but I don't know how to do it exactly. The view class once is inserted, redirect ...
Roberto Vargas's user avatar
-2 votes
2 answers
675 views

If I click on RecyclerView item I should get toast category id. I've tried many times but I was not able to get a toast. I'm using api. If I get this toast it will be very simple for me to see id. ...
atozcodes's user avatar
0 votes
1 answer
1k views

I'm trying to add a success pop-up in my login screen but I got 'response is not defined' error. axios.post('api', formValues) .then(response => { if (response === 200) { ...
aniki_skywalker's user avatar
2 votes
1 answer
1k views

I made a powershell code that shows a toast-message with a "yes/no" option. Now I am looking for a way to handle that click-event properly. See below the code I have so far: cls Remove-...
Carsten's user avatar
  • 2,341
0 votes
1 answer
349 views

I've just added some toasts to a website I'm working on. They show absolutely fine, exactly when they should do, but they don't autohide. Doesn't seem to matter how I define the properties. According ...
Colin Slater's user avatar
0 votes
2 answers
6k views

How can I change text color of antd notification depending upon type. I want red color of notification if type is error and white color for other types. I am able to change background colors depending ...
Abdullah Abbasi's user avatar
3 votes
4 answers
4k views

I'm using chakra ui with my next js app. On some event, I want to show a notification using chakra ui toast, after performing some action. (For ex. on clicking sign in, I'll send request to backend, ...
Abhishek Jha's user avatar
0 votes
0 answers
249 views

I have created a C# desktop application using WPF for sending a toast notification. I am using my own custom audio to play when the toast notification gets displayed. I found some problems where my ...
Kamal's user avatar
  • 523
0 votes
1 answer
842 views

I have a scrollable listView full of quotes, now i want to display a toast message whenever the user scrolled to the bottom of the list. Tight now, I use scroll_edge_listener to detect the scrolling ...
aimanggs's user avatar
0 votes
0 answers
319 views

With this code I can generate my toast notification: from winsdk.windows.ui.notifications import ToastNotificationManager, ToastNotification, ToastTemplateType import datetime def toast_notification(...
Digital Farmer's user avatar
2 votes
1 answer
709 views

Android toast message set margin is not working. I want to fill horizontal and bottom gravity toast message with 16dp end and start margins. Please help me custom_toast_message_layout.xml <...
Murat Aktay's user avatar
1 vote
1 answer
633 views

I have installed sweet alert on my project. Now i want to use it in Vuex actions but it does not work. update({ commit, dispatch }, data) { return new Promise(async (resolve, reject) => { try ...
rozhan's user avatar
  • 341
0 votes
0 answers
1k views

I am currently using browser to test the application. I've implemented the toast message like in the documentation. Although the element is generated on the html when I look in the Elements with z-...
Arda Çetinkaya's user avatar
0 votes
1 answer
4k views

For example, assume I have a page called internal.tsx that has: export const getServerSideProps: GetServerSideProps = async (ctx) => { const session = await getSession(ctx); if (!session) { ...
Ryan's user avatar
  • 24.5k
1 vote
1 answer
888 views

I modified the code to generate a toast stack into a ToastContainer dynamically as a notification system. Now the toast do not autoclose even in close button click. The code can be reproduced by copy ...
Mingut's user avatar
  • 101
0 votes
1 answer
1k views

When I use React-Toast, It always duplication like the Image. How prevent the duplication? Toast Duplication Like This const Login = () => { // ========= Loading ============ if (loading) {...
Rahimuj570's user avatar
1 vote
0 answers
907 views

I want to toast as notification to my web app with the help of bootstrap 5 and vue 3 and I'm trying to use template code which is given in the bootstrap official documentation but its not working in ...
Santosh Managuli's user avatar
1 vote
1 answer
4k views

I would like to show a bootstrap toast by calling something like this: let my_toast = new myToast('title', 'hello world'); my_toast.show(); So far I am loading the html from an external file myToast....
erik-stengel's user avatar

1 2 3
4
5
43