So I\'m trying to create a custom editor so that for a DataType of \"Duration\" a textbox appears with a masked format of HH:MM:SS.
DataType
I\'ve created a very
Well, you can do following:
Add @RenderSection("MaskedInput", false) to your master layout. That'l render
@RenderSection("MaskedInput", false)
@section MaskedInput{}
on each page that has that section;
On a page you need to add maskedInput.js you put:
@section MaskedInput { @*Include scripts, styles or whatever you need here*@ }