Domanda

We are upgrading our old Telerik Upload control to Kendo Upload. One additional functionality provided in the new control is percentage completion number. We have decided that the progress bar is a sufficient indicator for the status bar. Hence we plan to remove the percentage number that is actually displayed(right corner in the screenshot). How can it be removed?enter image description here

function onProgress(ev) {
var progress = ev.percentComplete;
}

the above property gives the number. I am not sure how do I disable it entirely! fyi - Without even having onProgress function, the percentage is gettign dispalyed by default

enter image description here

È stato utile?

Soluzione

Try hiding this by overriding the style of the <span> that contains the progress percentage using:

.k-upload-pct
{
    visibility:hidden;
    display:none;
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top