Hi,
I am using a button with a command that call RadGridViewCommands.BeginInsert. It was working correctly on the Q3 version but since upgrading to 2011.1.530.10 of the GridView assembly it is no longer working. When I load the form the button is disable. Similarly, if I set ShowInsertRow to true the link appears but it doesn't insert an empty row. When I encountered a similar problem before it was becauise the bound object didn't have a default constructor, but in this case the object does.
Any assisance would be appreciated.
Regards
Mat
I am using a button with a command that call RadGridViewCommands.BeginInsert. It was working correctly on the Q3 version but since upgrading to 2011.1.530.10 of the GridView assembly it is no longer working. When I load the form the button is disable. Similarly, if I set ShowInsertRow to true the link appears but it doesn't insert an empty row. When I encountered a similar problem before it was becauise the bound object didn't have a default constructor, but in this case the object does.
<telerik:RadButton Content="NEW TASK" Padding="10,0" Margin="3,3" FontSize="10" Command="telerikGrid:RadGridViewCommands.BeginInsert" CommandTarget="{Binding ElementName=TasksGrid}" /> <telerik:RadGridView Grid.Row="1" Name="TasksGrid" ItemsSource="{Binding Items}" AutoGenerateColumns="False" ScrollMode="RealTime" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" ValidatesOnDataErrors="InEditMode" IsSynchronizedWithCurrentItem="True" AlternationCount="2" >
.....
Any assisance would be appreciated.
Regards
Mat