Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
TemplateDataField Checkbox not appearing in Add Row
posted

Hi, 

I've created a new grid and defined a templateDataField column as follows:

<ig:TemplateDataField Key="Included" Width="80px">

            <ItemTemplate>

                <asp:CheckBox ID="chkIncluded" runat="server" Checked='<%# DataBinder.Eval(((Infragistics.Web.UI.TemplateContainer)Container).DataItem, "Included") %>' />

            </ItemTemplate>

            <Header Text="Included" />

        </ig:TemplateDataField>

This works fine and good. However, I can't figure out how to get a checkbox field in my Add New Row. I can't find any articles on this, any code samples, or videos. Can anyone point me in the right direction? This can be done, correct?