Posted on: 5/25/2014 12:44:17 AM | Views : 408

Hi All,
I have a Web forms application using EF Code First. I am using ModelBinding, and all is going well. I decided to try my hand at DynamicDataEntities which I installed from NuGet packageManager. I have a FormView that is bound to my entity data model, and Im using the DynamicDataTemplates. I was just letting ASP build my form for me with the input fields, which worked fine, but, I need more control over the date fields. I want to add a jQuery Datepicker on the Date fields but I am having trouble.  I was using this:
<%--I was using a DynamicDataEntiy to render my form from my Model--%> <asp:FormView ID="addDogForm" runat="server" ItemType="PoochiesPrix_4.Models.DogInfo" InsertMethod="addDogForm_InsertItem" DefaultMode="Insert" RenderOuterTable="false" OnItemInserted="addDogForm_ItemInserted"> <InsertItemTempla ...

Go to the complete details ...