How do I remove the percentage complete label from a Kendo Upload control? -


we upgrading our old telerik upload control kendo upload. 1 additional functionality provided in new control percentage completion number. have decided progress bar sufficient indicator status bar. hence plan remove percentage number displayed(right corner in screenshot). how can removed?enter image description here

function onprogress(ev) { var progress = ev.percentcomplete; } 

the above property gives number. not sure how disable entirely! fyi - without having onprogress function, percentage gettign dispalyed default

enter image description here

try hiding overriding style of <span> contains progress percentage using:

.k-upload-pct {     visibility:hidden;     display:none; } 

Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

How to use vim as editor in Matlab GUI -