Question

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

Was it helpful?

Solution

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

.k-upload-pct
{
    visibility:hidden;
    display:none;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top