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
745
Problem with AutoCrud and checkbox
posted

Hi,

I'm using infragistics v12.1.

I have a webdatagrid with enable AUTOCRUD = True.

I can add and edit rows.

Here's my code:

<ig:WebDataGrid EnableDataViewState="true" ID="wdgTables" runat="server" Width="100%"

AutoGenerateColumns="false" EnableAjax="false">

       <Columns>

       </Columns>

<Behaviors>

<ig:EditingCore AutoCRUD="false">

<Behaviors>

<ig:RowAdding Enabled="true" Alignment="Top" >

</ig:RowAdding>

<ig:CellEditing Enabled="true" EditModeActions-MouseClick="Single">

</ig:CellEditing>

                    </Behaviors>

</ig:EditingCore>

</Behaviors>

</ig:WebDataGrid>

 

I set the datasource and the columns through code-behind.

When I add a new row, If I click the enter key on a column that is text everything is ok and the row is added to the grid.

But If I click the enter key on a column that is a BoundCheckBoxColumn, nothing happens.

In the example that I've attached I'm trying to add a new row "tst 4". 

If I click on the column "Motivo" and press enter key the row is added to my grid. But If I click the column "Activo" and press the enter key nothing happens.

What can I do?

Thank you

 

 

Parents Reply Children
No Data