I am using a listview and have set it up with a custom data source. I am not getting a progress bar/ring when its getting data,so really awkward. I tried looking at the docs, there's supposed to be a "win-progress" attribute you can set but it doesnt say
WHAT you need to put in there.
Then i look at progress control documentation and i see something quite different.
Here's that example.Supposing i want to get the listview to use it,where/what do i do? thanks
<meta charset="utf-8" />
<label class="progressRingText">
<progress class="win-ring withText"></progress>Processing</label>
<meta charset="utf-8" />
progress.withText
{
color: inherit; /* Uses the same text color as the page */
vertical-align: text-bottom; /* Makes the bottom of the control align with the bottom of its label */
}
/* Text style for a label for the progress ring */
.progressRingText
{
font-family: "Segoe UI";
}
/* Text style for a label for a default size progress ring */
.progressRingText
{
font-size: 11pt;
line-height: 15pt;
}
/* The margin to separate the ring and its label */
.progressRingText progress
{
margin-right: 5px;
}