Questions tagged [spinner]

The spinner widget gives users the option to choose an item from a set, functioning similar to a dropdown menu.

Having trouble with @Component in Angular 2+ causing an error

My application is facing a delay while loading large amounts of data, so I decided to implement a spinner. However, I encountered an issue. I referred to the following links for guidance: Pre-Bootstrap Loading Screen For Angular2 and to implement a spin ...

Guide on implementing a bootstrap loading spinner during the process of retrieving data from an external api

Is there a way to use the bootstrap load spinner to mask the delayed information retrieval from a url and enhance the website's interactivity? ...

Loading animation for fetchAll() function in a web application built with React and Redux using Axios

I am working on a simple react-redux app with an asp.netcore back-end and I am looking to implement a loading indicator like a spinner or icon to display before the data is loaded. The component in question is Courses.jsx import React, { useState, useEffec ...

Configuring a spinner to display a selected item using JSON

I am currently developing an android application that requires users to choose a country and city using a spinner. To retrieve the necessary data from a JSON file, I use the following code: String state = json.data.getState(); String city = json.data.ge ...

The Ng4LoadingSpinner will automatically stop after 5 seconds

When utilizing Ng4LoadingSpinner, I encountered an issue where it disappears automatically after the default timeout of 5 seconds, even though our request is still processing. Increasing the timeout resolves the problem, but I am seeking an alternative s ...

Ionic - numerical age selector control

Currently working on a hybrid mobile app and ran into a specific issue. I'm in the process of adding new items to my left side menu, including an age number spinner component (min:18, max:65). After searching through various sources and Ionic documen ...

What is the best way to handle a JSON array within a Spinner?

I am currently facing a challenge with parsing a JSON file. I have the JSON file, but I am unsure of how to proceed with the parsing process. The structure of my JSON file is as follows: [ {"city":"Taipei", "area":["Songshan","Sinyi","Datong"]}, {"ci ...

Issue with displaying Ng-x spinner in Angular 5 function

Have you ever encountered this issue before? I've noticed that ngx-spinner doesn't work when used within a function, but it works fine when placed inside the subscribed callback. When placed outside of the authservice, the spinner isn't displayed. login( ...

JSON data is being displayed in the spinner for just a single item

My spinner is supposed to display all of the supplier's names from a JSON file. I managed to retrieve the JSON data, store it in an ArrayList, and display it. However, I encountered an issue where only one item is displayed - usually the most recently adde ...

Colorful radial spinner bar

I am interested in replicating the effect seen in this video: My goal is to create a spinner with text in the center that changes color, and when the color bar reaches 100%, trigger a specific event. I believe using a plugin would make this task simpler, ...

Show a loading icon as the synchronous Ajax request is being sent

Seeking a way to show a spinner while making a synchronous Ajax request to fetch data from the server. Acknowledging that asynchronous mode is preferred, but not permitted in this case. Aware that a sync ajax request can cause browser blocking. An attemp ...