So I would like to display data in my admin tab view, which is not null as a placeholder value.
I though maybe something like this:
@Html.EditorFor(model => model.AmazonProductSKU, placeholder = model.AmazonProductSKU)
Or this:
@Html.EditorFor(model => model.AmazonProductSKU, new { @placeholder = T(model.AmazonProductSKU) })
But it breaks my tab.
Everything works, so model updates database etc.
Anyone have any ideas of how this might be accomplished, is it even possible?
Thanks peeps