Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
311 views

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 !', ]);...
mstdmstd's user avatar
  • 3,309
1 vote
1 answer
5k views

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 ...
nick's user avatar
  • 120
-1 votes
1 answer
87 views

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 ...
Fahim Parkar's user avatar
  • 31.8k
1 vote
1 answer
3k views

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 ...
Efannnnnn's user avatar
0 votes
1 answer
1k views

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 ...
The Beast's user avatar
  • 163
0 votes
1 answer
207 views

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 ...
jub's user avatar
  • 427
0 votes
1 answer
60 views

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 ...
André Gonçalves's user avatar
0 votes
1 answer
1k views

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 ...
Matin Aliakbari's user avatar
0 votes
1 answer
3k views

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 ....
hikari_san's user avatar
0 votes
0 answers
316 views

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 ...
M Junaid's user avatar
  • 988
1 vote
1 answer
1k views

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. (...
Arbelac's user avatar
  • 1,956
1 vote
1 answer
523 views

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 ...
Marcel Grüger's user avatar
3 votes
1 answer
5k views

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 ...
Silveri's user avatar
  • 5,441
1 vote
0 answers
883 views

I have the following code in Angular: <div> <p-toast key="refaLivaImpresion" [baseZIndex]="99999" styleClass="custom-toast"></p-toast> <p-dialog [(...
BRUNO's user avatar
  • 33
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 tried many codes and I find the solution but I made a new problem ...
Mohammad Hazrati's user avatar
0 votes
1 answer
992 views

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 ...
AnakinShane's user avatar
1 vote
1 answer
4k views

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, ...). ...
Stephan's user avatar
  • 93
1 vote
0 answers
318 views

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 ...
Rumesh Wishwa's user avatar
0 votes
0 answers
90 views

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=...
Himanshu Prem's user avatar
0 votes
1 answer
72 views

http .post("/user/createAccount", data) .then((res) => { console.log(res.data); navigate("/user/login"); }) .catch(function (...
Stried's user avatar
  • 1
0 votes
1 answer
53 views

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 ...
Arpan Karmakar's user avatar
0 votes
1 answer
533 views

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....
nullbody's user avatar
0 votes
1 answer
2k views

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 ...
OnePanic's user avatar
1 vote
1 answer
2k views

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 ...
Ali Nawaz's user avatar
0 votes
0 answers
273 views

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....
Harmony Valley's user avatar

1
2
3 4 5
43