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
100
Commit AddNewRow Data without using ENTER
posted

I use Infragistics WebDataGrid 14.1.20141.2283.

With following Behaviors

<Behaviors>
	<ig:CellEditing>
		<ColumnSettings>
			<ig:EditingColumnSetting ColumnKey="ID" ReadOnly="True" />
		</ColumnSettings>
		<EditModeActions MouseClick="Double" EnableOnActive="true" />
	</ig:CellEditing>
	<ig:RowAdding>
		<ColumnSettings>
			<ig:RowAddingColumnSetting ColumnKey="ID" ReadOnly="True" />
		</ColumnSettings>
		<EditModeActions MouseClick="Single" EnableOnActive="true" />
	</ig:RowAdding>
	<ig:RowDeleting  Enabled="True">
	</ig:RowDeleting>
</Behaviors>

In the Webform, I use an Image-Button for saving the changes to database, which are made in the grid.

My issue: the customer clicks after entering data in the AddNewRow the external "save" button without previously pressed "enter" to confirm the new row.

Is there any way to commit an AddNewRow via JavaScript?

Parents
No Data
Reply Children