Telerik Forums
UI for WPF Forum
1 answer
68 views
I add MarkedZones and then CustomLines but some of the MarkedZones appear over some CustomLines.  I can't find a way to enforce the level these items display. Does anyone know a way to do this?
Nicholas
Top achievements
Rank 2
 answered on 19 Aug 2013
2 answers
96 views
Hi,

I have my gridview setup like this:

<telerik:RadGridView ShowGroupPanel="False" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Name="RadGridView1"
                     AutoGenerateColumns="False" >
    <telerik:RadGridView.Columns>
        <telerik:GridViewDataColumn DataMemberBinding="{Binding FirstName}" Header="First Name"/>
        <telerik:GridViewDataColumn DataMemberBinding="{Binding LastName}" Header="Last Name"/>
    </telerik:RadGridView.Columns>
    <telerik:RadGridView.ChildTableDefinitions>
        <telerik:GridViewTableDefinition/>
    </telerik:RadGridView.ChildTableDefinitions>
    <telerik:RadGridView.HierarchyChildTemplate>
        <DataTemplate>
            <telerik:RadGridView ItemsSource="{Binding Content}" ShowGroupPanel="False" />
        </DataTemplate>
    </telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>


Everything displays correctly. However it's not possible to edit the child data. Is there something wrong with my approach or is this a feature limitation?

Thanks.
James
Top achievements
Rank 1
 answered on 19 Aug 2013
0 answers
216 views

hi

i'm using Radgridview , My scenario is i have totals in one row  i need to enter some numbers in next row cells ,when ever i entered number ,based on that number it  calculate % of above totals and the calculated figure should be displayed in next row ..... how to implement this cell triggers using C# plz help me

If you see below attachment u can understand .. if i enter 10 in cell then the calculated total figure should to next row cells

thanks in advance 

Pranavi
Top achievements
Rank 1
 asked on 19 Aug 2013
4 answers
147 views
Software we are writing with WPF has some requirements to enter dates which are 10-20 years in the future. Ideally, we would like the FIRST popup to be the decade view, but which would then continue down to the month, then day - much like if you click on the header part several times. We don't want the control to ONLY take a year, so DateSelectionMode set to 'Year' is not what we want.

Yana
Telerik team
 answered on 19 Aug 2013
1 answer
127 views
Hi,

in my application, when the user click on my search button. I want to show all availabilities by date and only the availabilities. I though the TimeLineView was the component I need for doing this but I'm not sure. Look at the screen shot of what I want and if anybody know what I could take for this let me know.

Thank's
Alain
Tsvetie
Telerik team
 answered on 19 Aug 2013
4 answers
68 views
When dragging a row from a RadGridView, by default. the whole row with all the cells/fields is shown as Dragged Item.m
Is there a simple way to just show one of the cells/fields?
Without the need of several help-classes and templates?

What is the easiest way?

Rieni De Rijke
Top achievements
Rank 1
 answered on 19 Aug 2013
1 answer
96 views
Hi,

I'm working on a WPF 4.0 app which uses the Windows 8 theme with a predominantly green colour scheme. However some parts of the app use a grey colour scheme and this is causing me issues, specifically with RadComboBox.

I've set the colours in Windows8Palette.Palette according to the green colour scheme and that all works fine. My problem comes when I need to use a RadComboBox with the grey colour scheme. I have styles for RadComboBox which set Background, Foreground etc. to the appropriate grey colour scheme colours and I've set the combo box's ItemContainerStyle to one which styles a RadComboBoxItem with the correct colours but some parts of the RadComboBox UI access Windows8Resource directly which gives them the green colour scheme rather than the grey one I want.

For example, in Telerik.Windows.Controls.Input.xaml (for the Windows 8 theme), the style for RadComboBoxItem gives the control a Border called HighlightVisual which is made visible on mouse over. This control sets its Background to "{telerik:Windows8Resource ResourceKey=BasicBrush}" and I haven't been able to figure out a way to set this to a colour from the grey scheme without changing BasicBrush for the whole app.

Is there a way to change this colour for a single control, preferably in a Style?

I could create Styles which duplicate the XAML for RadComboBoxItem etc. and then set the Background to something different but this seems like a lot of effort just to change the Background of a Border!

Cheers,

Richard
Masha
Telerik team
 answered on 19 Aug 2013
1 answer
62 views
Hi,

i try to use your schedule view drag and drop example. I don't want to use the "Appointments.xaml" file for my source. I have a
connection to a database and now I want to add the InterViewManager (as you can see in your RadListBox). But how do I
add these Items?

Thanks
Best Regards
WW
Ventzi
Telerik team
 answered on 19 Aug 2013
1 answer
103 views
Hi,

in Europe we use an other time-format. We do not say 1:00 PM, we say 13:00 and 1:00 AM is just 1:00! How do
I get this in the scheduleview?

Thanks
Rene
Rosi
Telerik team
 answered on 19 Aug 2013
1 answer
319 views
Hello,

I have a problem with the RadGridView (RadControls for WPF Q2 2013) when using the NoXaml assemblies: It seems, that one or two resources from the theme are missing - when i open the filter dialog for a column, the rectangle of the checkbox which has the focus disappears. Also grouping of columns is very slow. 

Looking at the output window, I see thousends of warnings:
System.Windows.ResourceDictionary Warning: 9 : Resource not found; ResourceKey='Telerik.Windows.Controls.InternalResourceKey'; ResourceKey.HashCode='0'; ResourceKey.Type='Telerik.Windows.Controls.InternalResourceKey'

And also a few warnings of this kind:
System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadGridView', AncestorLevel='2''. BindingExpression:Path=FontSize; DataItem=null; target element is 'ListBox' (Name='PART_DistinctValuesList'); target property is 'FontSize' (type 'Double')

I have included the required resources of the Window8-Theme and the other controls are working fine (RadComboBox, RadWatermarkTextBox etc.).
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/myAssembly;component/Resources/Theme/System.Windows.xaml" />
        <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.xaml" />
        <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.Input.xaml" />
        <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.Navigation.xaml" />
        <ResourceDictionary Source="/myAssembly;component/Resources/Theme/Telerik.Windows.Controls.GridView.xaml" />
    </ResourceDictionary.MergedDictionaries>
     
    <!-- Dummy Style -->
    <Style TargetType="{x:Type Rectangle}" />
</ResourceDictionary>

Did I miss something?


Best regards,
Thomas
IT-Support
Top achievements
Rank 2
 answered on 18 Aug 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?