Вопрос

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

Это было полезно?

Решение

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

.k-upload-pct
{
    visibility:hidden;
    display:none;
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top