문제

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