Fluqi.Widget.jSelectMenu.SelectMenu.RenderStartUpScript C# (CSharp) Method

RenderStartUpScript() public method

Writes out the document.ready, text/JavaScript and control initialisation script to the Response.
Useful if you want more control over where the initialisation takes place.
public RenderStartUpScript ( bool incDocReady ) : void
incDocReady bool /// If true the control initialisation is wrapped in a jQuery document.ready and script /// declaration. /// If false no wrapping takes place. ///
return void
		public void RenderStartUpScript(bool incDocReady) {
			string startUpScript = this.GetStartUpScript(incDocReady);

			this.Writer.Write(startUpScript);
		}

Same methods

SelectMenu::RenderStartUpScript ( ) : void