Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

jquery - Uniformly update jQueryUI Progressbar over N seconds -


given variable n, reflecting number of seconds, i'd have jqueryui progressbar smoothly update being empty reflecting completion on period of time.

in other words, i'd function n_sec_progressbar(n) { ... } shows progressbar, , on n seconds progressbar uniformly advances value of 0 100.

before go ahead , start fiddling settimeout on own, i'd grateful suggestions or direction towards that's been done.

thank reading.

brian

make function this

(function( $ ) {     jquery.fn.fillprogressbar = function(option){     var settings = jquery.extend({         fromvalue : 0,         tovalue : 0,         interval : 1000     },option);      function fillprogressbar(element,initialvalue,tovalue,interval){     //  console.log("out "+initialvalue);         if(initialvalue<=tovalue){         /*  $j(element).progressbar({                 value : initialvalue++             });*/             $j(element).progressbar( "value", initialvalue++ );         //  console.log(initialvalue);             settimeout(function(){                 fillprogressbar(element,initialvalue,tovalue,interval);             }, parseint(interval/tovalue));         //  console.log("in "+initialvalue);          }     }     fillprogressbar(this,settings.fromvalue,settings.tovalue,settings.interval);     return this; };})( jquery ); 

and make calls as

$j("#progressbar").progressbar({     value:0 });  $j("#progressbar").fillprogressbar({tovalue : progressbarvalue,     interval : 1000}); 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -