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
960
XamGrid TemplateColumn Howto Enter edit mode when entered with tab
posted

Hi, I have a XamGrid with Two editable columns, I use Template Columns because I need to control Filtering and editors.

I've understood that to use the editing settings to activate or deactivate editing I have to use ItemTemplate and EditTemplate and it works

Just one thing I can not achieve, even if I've set

<ig:XamGrid.EditingSettings>
 <ig:EditingSettings AllowEditing="{Binding AllowEdit}"  
		 IsMouseActionEditingEnabled="SingleClick" 
                 IsEnterKeyEditingEnabled="{Binding IsInEditMode}" 
		 IsF2EditingEnabled="False" 
                 IsOnCellActiveEditingEnabled="{Binding IsInEditMode}" />
</ig:XamGrid.EditingSettings>

When the cells are "browsed" using the Tab key and AllowEditing is set to Cell, even if the IsOnCellActiveEditingEnabled
is set to True, the cell is selected and active but not enters edit mode.
What do I have to do??? is there an event where to perform an enter edit mode? Is there some other editing setting?
thank you in advance
bye