vote up 0 vote down star

I want to add Mask textbox in datagridview in windows application.

The mask textbox will hold the mask for time value.

How this can be done in the windows datagridview? Any help?

flag

1 Answer

vote up 1 vote down

it is simple: just add it inside a template column

    <asp:GridView ID="gv" runat="server">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:TextBox ID="txt" runat="server" />
                    <ajaxtoolkit:maskededitextender targetcontrolid="txt" mask="9,999,999.99" messagevalidatortip="true"
                        onfocuscssclass="MaskedEditFocus" oninvalidcssclass="MaskedEditError" masktype="Number"
                        inputdirection="RightToLeft" acceptnegative="Left" displaymoney="Left" errortooltipenabled="True" />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

you changed... now you say Windows application :D

for Windows Forms you should read this article

link|flag
Changed??? No, Is there any edit history? – LittleBoy Jun 19 at 6:13
so, it was me ... I read one thing and thought the other, but you do have the answer for both :) – balexandre Jun 19 at 6:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.