Hi
I have a form component, and ideally I'd like to embed some custom HTML within it alongside one of the fields.
For example pseudo code for if this sort of thing was possible :
items.Add()
.Field(f => f.Task.StartDate)
.Label(l => l.Text("Call Date"))
.Editor(e =>
{
e.DateTimePicker()
.Size(ComponentSize.Small)
.Format("{0:dd/MM/yyyy HH:mm}")
.Min(DateTime.Now)
.DateInput();
});
items.Add()
.ClientTemplate(<ul><li><a href="test1">A Link</a></li><li><a href="test2">Another Link</a></li></ul>);