i.Add()
.Id(Id.ToString())
.Name(Id.ToString())
.Title(Name.ToString())
.Field(Id.ToString())
.Label(l => l.Text(Lab + ":"))
.Editor(e =>
{
e.NumericTextBox<Decimal>()
.Format("c")
.Value(System.Convert.ToDecimal(Answer));
});
Posted above is an item on a form unfortunately the Value property doesn't display anything nor does hard coding a number into Value property. However, when I place the same variable into the placeholder property, it does seem to display what its supposed to. Is there a reported bug for why this is happening or perhaps a work around to assist this.
Thank you in advance for your assistance