2,107 questions
-4
votes
0
answers
22
views
How to make Toast Online Ordering match my WordPress site’s header/footer, and can a custom Toast “trail” page replicate full ordering functionality? [closed]
I’m working on a WordPress site where the client already has a Toast Online Ordering page set up. The WordPress site links to it through a button that opens the Toast ordering URL.
The issue is that ...
0
votes
0
answers
45
views
WinUI 3 Unpackaged App: Toast Notification Button Clicks Not Working - Complete Solution
Problem
Toast notification buttons in an unpackaged WinUI 3 app don't trigger the OnNotificationInvoked event handler, despite proper event registration and manifest configuration.
Symptoms
Toast ...
-4
votes
1
answer
117
views
'toast.success' is not working in my signup form [closed]
I'm trying to implement a signup form and using the react-toastify package to show success and error messages. While the toast.error function works perfectly, the toast.success function does not ...
3
votes
2
answers
335
views
How to show a toast/banner above the navigation bar in SwiftUI (like adding a subview to UIWindow in UIKit) without blocking interaction?
I’m working on an iOS app that is mostly UIKit, but I’m adding new screens using SwiftUI. I want to show a toast/banner message above everything—including the navigation bar—when a user performs an ...
0
votes
0
answers
23
views
Primevue's DataTable Toast component acting differently in Parallel Works than with just Node
I using Vue3/Nuxt3 and have imported Primevue's DataTable and DataTable - Vue Table Component and Toast component.
Works smashingly well on my development system using Node.
PrimeVue’s Toast is built ...
2
votes
0
answers
153
views
How do I add a custom sound to my Windows desktop toast notification in win32 C++?
I'm implementing Windows 10 desktop notifications in my program (written in C++ using the Win32 APIs) and for some I would like to add a custom sound. Going by this page, there are two supported audio ...
0
votes
1
answer
51
views
App notification (Toast) breaks when adding image
I can send Toast notifications with buttons just fine, but when I add an image it seems to balk and just put up a generic "New Notification" box without the text, buttons or image.
The xml ...
0
votes
1
answer
108
views
Referencing compiled resources in .exe for with URI for toast notifications?
With a normal Win32 C++ application with compiled resource file (.rc), how does one reference the icons, bitmaps and png files from the resource using a URI required for toast notifications?
I presume ...
2
votes
3
answers
2k
views
PrimeVue toast - No PrimeVue Toast provided when using utility .ts
I have a vue.js app where I'm using PrimeVue for the UI. I want to have util functions for displaying toasts, but it doesn't seem to work.
I have everything set up, but I'm getting the error 'No ...
0
votes
0
answers
38
views
Android Kotlin: Why can't the response be displayed using Toast after retrieving it through OkHttpClient? [duplicate]
In my app, I am using OkHttpClient to send a simple HTTP request to a webserver and get a String response back. I was able to verify that the following code works. However, I can't display the ...
0
votes
0
answers
92
views
Open multiple Bootstrap Toasts instead of overriding the same Instance
I am trying to call multiple instances of a bootstrap toast in Vue3. When I call a new Instance the old one gets overwritten but I want the old one to stay. I saw some libraries with this ...
1
vote
0
answers
70
views
Toast Guardian Vs. Square KDS
I am working with a Toast branded device that I need to run Square KDS on. The device is an ELO 15in-I-series-4. I have successfully been able to install the the Square KDS apk through adb commands ...
4
votes
2
answers
6k
views
Sonner toast is not rendering toast on component mount
I want to show a toast when my client side component mounts.
I'm using sonner library to show toast, it's working fine when we use button to show toast.
I make an example app to show the problem. Here ...
1
vote
2
answers
294
views
toast.show() function is not working when the app starts
While I am using react-native-toast-notifications in my react native project, I have used useToast() in my splash screen.
I have wrapped splash screen component using ToastProvider
Here it is.
import {...
0
votes
3
answers
1k
views
Toast notification not triggering in Next.js contact form despite successful route and form submission
I'm working on a contact form in Next.js with server-side email functionality. The form submission is working correctly, and the email is sent successfully (verified via the network and console logs). ...
0
votes
1
answer
56
views
Cant see the values in a Toasted Kotlin Integer array
So I have defined a simple Integer Array in Kotlin (in activity 1)
var arr = intArrayOf(1, 2, 3, 4, 5)
The following Toast allows me to see the values in the array (in activity 1) as [1,2,3,4,5]
...
-2
votes
1
answer
509
views
How to trigger bootstrap toast ? other then button type="button", or fetch() [closed]
Is there a simple, other solution to trigger my boostrap toast which doesn't involve a button?
Maybe like :
button onclick ="trigger my bootstrap toast the easy way"
without the need of ...
0
votes
1
answer
152
views
Multiple button calls to same Bootstrap toast [duplicate]
Just call one Bootstrap toast, with a unique id, and I can do it. But:
I would have multiple Buttons, all reference to the same Toast message. And trigger I thought, a class call? In my JS script. I ...
0
votes
1
answer
291
views
Debug my google script, alert message error for close button
function onOpen() {
var ui=SpreadsheetApp.getUi();
let buttonpushed=ui.alert("🔔 Polite Notice 🔔", "✅ Please ensure you have read the MUST READ tab before filling out your sheet....
0
votes
1
answer
92
views
Set an event on ToastButton from background task
From a UWP application I start this background task:
namespace Background.UWP
{
public sealed class BackgroundTask : IBackgroundTask
{
private WatchLoop _watchLoop;
public ...
4
votes
2
answers
5k
views
unable to hide next.js built-in toast error message
Next.js toast error not getting hide.
i am working on next.js first time.i am facing an issue due to which i am getting error message in a toast at bottom left corner. i want to hide that toast. i ...
0
votes
1
answer
619
views
react-hot-toast shows duplicate toasts
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
// import ToastProvider from "./(components)/Toastify";
...
0
votes
1
answer
169
views
Could not resolve compiling @angular/animations
I need help, i want to resolve this problème, but i can't because, i dont know where start
enter image description here
when i run my lacal server with ng serve, i get this error
this is after ...
3
votes
1
answer
2k
views
Global toasts service Bootstrap for Blazor server application
I am working on a project with Blazor Server (.NET 8) & Bootstrap (2.0.0) and I would like to use the toast component of Bootstrap. I wanted to use The Global toast service to display my toasts ...
0
votes
1
answer
439
views
Add multiple toast notification and each one has it's own disappearance time with javascript
I'm a student and it's my first time here !
So I'm trying to code a toast notification for the first time, here's mine : toast notification
The problem is, when I add several of them, after 5s, they ...