Fluqi.Widget.jMenuItem.MenuItem.WithCss C# (CSharp) Method

WithCss() public method

Registers a set of CSS class names to be added to the control when it is rendered. This is in addition to jQuery UI styles that may appear (see RenderCss property).
public WithCss ( string cssClasses ) : MenuItem
cssClasses string Set of space separated CSS class names to add
return MenuItem
		new public MenuItem WithCss(string cssClasses) {
			base.WithCss(cssClasses);
			return this;
		}