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

GetStartUpScript() public method

Renders (and returns) the JavaScript required to initialise the SelectMenu control with the required options. A jQuery document.ready section is wrapped around the script.
public GetStartUpScript ( ) : string
return string
		public string GetStartUpScript() {
			return this.GetStartUpScript(true/*include document.ready*/);
		}

Same methods

SelectMenu::GetStartUpScript ( bool incDocReady ) : string

Usage Example

Example #1
0
		public string JavaScriptCode(SelectMenu mnu) {
			mnu.Rendering.SetPrettyRender(true);
			return mnu.GetStartUpScript();
		}