This question is locked. New answers and comments are not allowed.
Hi..
I'm trying to use the RadBusy in the RadDataForm New & EditTemplate.. when the Combo Box is being bound loaded. Nothing happens I don't see the Busy,.. If I move it outside the DataForm... it works... what's wrong? thanks
<telerik:RadDataForm.NewItemTemplate>
<DataTemplate>
<telerik:RadBusyIndicator Background="Yellow" x:Name="busyMatterCRM" Grid.Row="3" Grid.Column="2" Grid.ColumnSpan="7" Height="200" Width="900" BusyContent="{Binding comboRepInfo
}" IsBusy="{Binding IsBusyMattersCRM}" Margin="2,2,2,2" IsIndeterminate="True">
<telerik:RadComboBox x:Name="comboRepInfo" Margin="5,0,0,0" Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" IsEnabled="True" HorizontalAlignment="Left" CanAutocompleteSelectItems="true"
ItemsSource ="{Binding RepInfo,Source={StaticResource ViewModel}}"
SelectedValue="{Binding Rep, Mode=TwoWay}"
SelectedValuePath="REP"
DisplayMemberPath="REP" IsEditable="True"
Style="{StaticResource RadComboBoxStyle}"
ItemTemplate="{StaticResource RepInfoComboCustomTemplate}"
SelectionBoxTemplate="{StaticResource RepInfoComboCustomTemplate}"
Height="30" Width="200" VerticalAlignment="Bottom">
</telerik:RadComboBox>
</telerik:RadBusyIndicator>
I'm trying to use the RadBusy in the RadDataForm New & EditTemplate.. when the Combo Box is being bound loaded. Nothing happens I don't see the Busy,.. If I move it outside the DataForm... it works... what's wrong? thanks
<telerik:RadDataForm.NewItemTemplate>
<DataTemplate>
<telerik:RadBusyIndicator Background="Yellow" x:Name="busyMatterCRM" Grid.Row="3" Grid.Column="2" Grid.ColumnSpan="7" Height="200" Width="900" BusyContent="{Binding comboRepInfo
}" IsBusy="{Binding IsBusyMattersCRM}" Margin="2,2,2,2" IsIndeterminate="True">
<telerik:RadComboBox x:Name="comboRepInfo" Margin="5,0,0,0" Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" IsEnabled="True" HorizontalAlignment="Left" CanAutocompleteSelectItems="true"
ItemsSource ="{Binding RepInfo,Source={StaticResource ViewModel}}"
SelectedValue="{Binding Rep, Mode=TwoWay}"
SelectedValuePath="REP"
DisplayMemberPath="REP" IsEditable="True"
Style="{StaticResource RadComboBoxStyle}"
ItemTemplate="{StaticResource RepInfoComboCustomTemplate}"
SelectionBoxTemplate="{StaticResource RepInfoComboCustomTemplate}"
Height="30" Width="200" VerticalAlignment="Bottom">
</telerik:RadComboBox>
</telerik:RadBusyIndicator>