Fluqi.Widget.jSelectMenu.SelectMenu.WithAttribute C# (CSharp) Méthode

WithAttribute() public méthode

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
Résultat SelectMenu
		new public SelectMenu WithAttribute(string attrName, string attrValue) {
			base.AddAttribute(attrName, attrValue);
			return this;
		}