About 1,580,000 results
Open links in new tab
  1. javascript - how to add a loading "spinner" - Stack Overflow

    See below. Instead of a spinner, first send a low resolution (consider B&W too) of the image. This SO question tells how. Spinners for image loading A problem with showing a spinner while …

  2. Blazor .NET Show loading spinner on UI while doing a heavy query …

    Nov 21, 2022 · Blazor .NET Show loading spinner on UI while doing a heavy query in background Asked 2 years, 11 months ago Modified 1 year, 2 months ago Viewed 18k times

  3. spinner - Good NumericUpDown equivalent in WPF? - Stack …

    I'm looking for a simple NumericUpDown (a.k.a. number spinner) control in WPF. This seems to be another lacking control in WPF. There must be some existing ones out there and I don't like …

  4. android - How to create a drop-down list? - Stack Overflow

    Nov 14, 2012 · How can I create a drop-down list? I've tried a ScrollView but it's not exactly what I need.

  5. Android: How to bind spinner to custom object list?

    public class User{ public int ID; public String name; } What I don't know is how to create a spinner which displays the list of user's names and bind spinner items to IDs so when the spinner item …

  6. How to change spinner text size and text color? - Stack Overflow

    Feb 28, 2012 · In my Android application, I am using spinner, and I have loaded data from the SQLite database into the spinner, and it's working properly. Here is the code for that. Spinner …

  7. How to show loading spinner in jQuery? - Stack Overflow

    Sep 16, 2008 · Top tip: Preload the spinner.gif in a div with display set to none. Otherwise you might get a bit of a delayed spinner effect as the spinner still downloads.

  8. android - How to get Spinner value? - Stack Overflow

    Dec 22, 2009 · In Android, I am trying to get the selected Spinner value with a listener. What is the best way to get the spinner's value?

  9. c# - WPF loading spinner - Stack Overflow

    The goal is to display the information that the application is working. So I'm looking for an intelligent implementation sample of a loading spinner using WPF / MVVM.

  10. How to show a loading spinner while waiting on an observable …

    Feb 13, 2020 · I have set up an observable service that helps me persist data, but I need a way to show a loading spinner while the data is waiting to come from the observable.