2,107 questions
0
votes
0
answers
311
views
How to use toast library in laravel/ livewire app?
In laravel 10 livewire 3 app I try to use toast library to show
$this->dispatch('PersonalPageMessageSuccess', [
'title' => 'Tasks for News',
'message' => 'News task was created !',
]);...
1
vote
1
answer
5k
views
How to show toasts in react server components?
I'm using Next.js 14 with the app router.
I have two server components:
List page /products that shows multiple products
Product Details page /products/{id}.
On /products/{id} I check whether the id ...
-1
votes
1
answer
87
views
Argument of '#selector' cannot refer to global function
I have made a Toast function as below
CommonFunctions.swift
import UIKit
func showToast(toastTitle: String, toastText: String, type : ToastType, position : ToastPosition = .center, style : ToastStyle ...
1
vote
1
answer
3k
views
Toast Message Using Sweet Alert
I'm having problem with my toast message. instead of the toast popup right after i fill the form submission, the toast keeps appear even i don't submit form submission and even i'm from another page i ...
0
votes
1
answer
1k
views
React - Toast message not working properly
I am trying to implement a login check. I want to check if the user is logged in before he/she can view the page. If not, then redirect the user to the login page. When the user is redirected to the ...
0
votes
1
answer
207
views
Use python script to schedule several tasks in Windows Task Scheduler, then exit. Each task should generate Win toast notification. How to do? [closed]
There is an online calendar of events. I will fetch the names, dates and times of these events. I then want to use python to pass these events to Windows Task Scheduler (running Win 10), then have the ...
0
votes
1
answer
60
views
CalendarView usage in Fragment
I am creating an app where I want to display a calendar and below specific statistics for each selected day, but for now I am trying to display the selected day in a TextView (and a Toast just to be ...
0
votes
1
answer
1k
views
Failed to load source map for vue-toast-notification nuxt 3
I'm using Nuxt 3 and i added vue-toast-notification, version 3.
I made a plugin to register and customize it, but my global options does'nt apply on it.
It's my toast.js file:
plugins/01.toast.js
...
0
votes
1
answer
3k
views
Nuxt 3 - Client Side plugin with Vue Toast Notification
I've some trouble with Nuxt 3 client side plugin.
Nuxt 3 documentation for plugins says this:
Nuxt will automatically read the files in your plugins directory and load them. You can use .server or ....
0
votes
0
answers
316
views
(react-toastify/dist/ReactToastify.css) error in react js
I am trying to add toast message in react js I install package using this (npm add react-toastify) but when I use this (import 'react-toastify/dist/ReactToastify.css';) this is giving error see error ...
1
vote
1
answer
1k
views
Toast notification disappears after few seconds, how to hold until taking any action on display?
I'm trying to make a small PowerShell program to display a toast notification after log on.
I'd like the custom toast notification will stay there until user closes it. But but it disappears quickly. (...
1
vote
1
answer
523
views
Simple Toast with definable attribution area text
I am using C# WPF .net 4.8.1.
I want to show a notification Toast with my app and so far everything works as intended, but one little, but important, thing:
There is a Dev-Debug as Title not what I ...
3
votes
1
answer
5k
views
Layering toast alerts above dialog modal
When combining a DaisyUI modal (a TailwindCSS UI library) with a toast alert library, I can't seem to find any CSS that'll allow my global toast alerts to appear above the modal dialog (while just ...
1
vote
0
answers
883
views
Prime ng message (<p-toast>) is covered by modal window(<p-dialog>)
I have the following code in Angular:
<div>
<p-toast key="refaLivaImpresion" [baseZIndex]="99999" styleClass="custom-toast"></p-toast>
<p-dialog [(...
0
votes
0
answers
24
views
I have an authentication function which i want to detect wrong username and password condition to make a notification popUp massage
I have an authentication function which I want to detect wrong username and password condition to make a notification popup massage. I tried many codes and I find the solution but I made a new problem ...
0
votes
1
answer
992
views
The "Microsoft.Toolkit.Uwp.Notifications" package doesn't seem to work in C++ with Visual Studio
I am trying to implement the Microsoft UWP notification system in my C++ program, but I am encountering a problem. I followed the procedure on the Microsoft site: Send a local toast notification from ...
1
vote
1
answer
4k
views
Blazored Toast not showing up - Blazor Webassembly
I try to implement Toastmessages from the Blazored.Toast Library (https://github.com/Blazored)
My problem is that nothing happens if I call the ShowInfo() Method (or similar one like ShowError, ...).
...
1
vote
0
answers
318
views
Ng-neat/hot-toast custom component and passing usual options not working
My project currently use ngneat/hot-toast as our alert message library. It works fine.
but now we need to add some custom attributes in to the alert element due to requirement of cypres test ...
0
votes
0
answers
90
views
Toast message with wrong mark always positive
getting correct mark with correct message i want crros mark
for the following code i am getting same(positive sign in toast message with coreect message why so plx check it once..
const navigate=...
0
votes
1
answer
72
views
data is undefined in toast - ReactJS, Nodejs, Reactjs
http
.post("/user/createAccount", data)
.then((res) => {
console.log(res.data);
navigate("/user/login");
})
.catch(function (...
0
votes
1
answer
53
views
What could be causing my Python drink-water-notifier to not display notifications when launched on startup?
I made a drink-water-notifier in Python. It works when run from the terminal. I used the playsound for the music of gulping water and I've used the win10toast module for the toast notifier. I also ...
0
votes
1
answer
533
views
C# WPF - Strange MainWindow focus loss when clicking on a Windows Toast Notification button
I have created a small .NET 6 WPF app to show this issue.
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
Current....
0
votes
1
answer
2k
views
A Flutter Toast plugin Error "No overlay widget found"
E/flutter (12906): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: No Overlay widget found.
E/flutter (12906): Some widgets require an Overlay widget ancestor for correct ...
1
vote
1
answer
2k
views
I am using the vue toastification library for notification but it shows the error of outdated optimize dependency
I want to implement the toasts in nuxt 3 but facing issues compatibility. Previously I wast using @nuxtjs/toast for nuxtjs 2 but now I am migrating it to nuxt 3 but that module is not working so i ...
0
votes
0
answers
273
views
Toast "setGravity" doesn't work on fragment
All the toasts I use in a fragment are shown in the same place. I tried to change the position using this code:
val t = Toast.makeText(
context,
"hello",
Toast.LENGTH_LONG
)
t....