Hi All,
In the drop down area of an RadAutoCompleteBox, how could different datatemplates be automatically selected based on the current bound type, like what can be done for ListView? Thanks!
Nathan
Customer ID is: WP480921
Hi Folks,
i am working with Pivot to build a prototype whether the Control is good for our requirements.
Is it possible to show a value (datatyp doesnt matter), as Information in a column without to be calculated?
When i add a field as column, the Pivot adds all values of that field as an own column. I want to add one column, that Shows the value of that field.
I made an example to Support my question.
Thanks for reading and help
David
<telerik:RadComboBox SelectedValue="{Binding Setting}" |
ItemsSource="{Binding PossibleValues,Mode=OneWay}" |
SelectedValuePath="UniqueName" |
DisplayMemberPath="FriendlyName" /> |
Is any way to change the descriptionpanel as a tooltip ?
i wish when hover at the property header the tooltip show the discription of the property
Hi,
I've got a DataForm with a QueryableEntityCollectionView as ItemSource.
The QueryableEntityCollectionView is filtered, the DataForm as a custom CommandProvider.
An exception occurs when DataForm.AddNewItem() is beeing hit. "An unhandled exception of type 'System.NullReferenceException' occurred in Telerik.Windows.Data.dll" this is not happening when there is no filter active. Any idea why this is happening and how to have a filter active and add a new item?
Cheers! Eric
I have this style defined in the page resource
<Style x:Key="MsgStatusStyle" TargetType="telerik:GridViewCell">
<Setter Property="Foreground" Value="Red" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
</Style>
I assign the style for a GridViewDataColumn as follows
<telerik:GridViewDataColumn DataMemberBinding="{Binding MsgStatus}" Header="Msg Status" UniqueName="MsgStatus"
IsReadOnly="True" IsVisible="{Binding Data.GridColumns.MsgStatusIsVisible, Source={StaticResource proxy} , Mode=TwoWay}"
DisplayIndex="{Binding Data.GridColumns.MsgStatusOrder, Source={StaticResource proxy} , Mode=TwoWay}"
SortMemberPath="MsgStatus" CellStyle="{StaticResource MsgStatusStyle}" >
</telerik:GridViewDataColumn>
But the foreground doesnt change to Red. If I change the property in the style definition to background that changes to red upon rendering.
Any idea why froeground color doesnt change ?
I have a RadListBox with an ItemTemplate that contains a read-only RadNumericUpDown. When I click on the RadNumericUpDown, the list item is not selected. How can I make that happen?