I'm using the 6th version of Composite c1 CMS. And i'm wondering about is there a way to add some kind of tabs inside Composite functions? For example, i have a function
`public override string MyFunction
{
get { return "SomeFunction"; }
}
[FunctionParameter(DefaultValue = "Nad")]
public string Name { get; set; }
[FunctionParameter(Label = "Another Field", DefaultValue = "", HideInSimpleView = true)]
public string AnotherField { get; set; }
[FunctionParameter(Label = "Some URL", DefaultValue = "", HideInSimpleView = true)]
public string Url { get; set; }`
and i want to add some kind of tabs, that user should interact with only if, for example, function name is "someName". Is there a way to a)add that kind of tabs,so user could switch between the main tab and the other one; and b)conditionally show this tabs?