set Expanded to lowercase if specified
This commit is contained in:
		| @ -40,7 +40,7 @@ | ||||
|     protected override void OnInitialized() | ||||
|     { | ||||
|         _heading = (!string.IsNullOrEmpty(Heading)) ? Heading : Name; | ||||
|         _expanded = (!string.IsNullOrEmpty(Expanded)) ? Expanded : "false"; | ||||
|         _expanded = (!string.IsNullOrEmpty(Expanded)) ? Expanded.ToLower() : "false"; | ||||
|         if (_expanded == "true") { _show = "show"; } | ||||
|     } | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 sbwalker
					sbwalker