OK i built my fancy modelbinder according to this post/question:
Generic TimeSpan binding in Asp.NET MVC 2
but now the timespan isnt being displayed when the same template is being called for edit?
I mean the value isnt being passed to the textbox.
<div class="editor-label">
@Html.LabelFor(model => model.strHandicap)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.strHandicap)
@Html.ValidationMessageFor(model => model.strHandicap)
</div>
displays 00:00:00 even though the value is shown in the grid prior to editing?
atm ive got around it by displaying it as a string & parsing the
string upon submitting the edit, but its broke my model binder and all
that goodness is gone...
8(
what am i missing??