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

WithAttribute() public method

Registers an HTML attribute to be added to the control when it is rendered.
public WithAttribute ( string attrName, string attrValue ) : SelectMenu
attrName string Name of the HTML attribute, e.g. "Menu" or "id" for example
attrValue string Value to be applied when the attribute is rendered
return SelectMenu
		new public SelectMenu WithAttribute(string attrName, string attrValue) {
			base.AddAttribute(attrName, attrValue);
			return this;
		}