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