Telerik Forums
UI for WPF Forum
0 answers
86 views
I am trying to copy and paste the Expression inside the expression editor to the text file so that i can use it for some thing else.

help Appreciated
Rakesh
Top achievements
Rank 1
 asked on 04 Oct 2013
2 answers
388 views
Hy,

I would to totally remove shadow on the book in the middle of the page,
I've read that it is not easy to edit this shadow but I would like to know if i can totally eliminate.

Many thanks
first100
Top achievements
Rank 1
 answered on 03 Oct 2013
3 answers
185 views
Please see attached image. Is it possible to change the cursor 'no' to a have a tool tip? Our aim is to have a tool tip explaining to the user why they cannot drop the appointment there.

Rosen Vladimirov
Telerik team
 answered on 03 Oct 2013
3 answers
434 views
I have a RadGridView with data bound columns:

<tk:RadGridView.Columns>
  <tk:GridViewCheckBoxColumn Header="" DataMemberBinding="{Binding IsSelected,NotifyOnTargetUpdated=True}" Width="Auto" AutoSelectOnEdit="True" EditTriggers="CellClick" TargetUpdated="FieldUpdated"/>
  <tk:GridViewDataColumn Header="Field" DataMemberBinding="{Binding Name}" IsReadOnly="True" Width="Auto"/>
  <tk:GridViewDataColumn Header="Filter" DataMemberBinding="{Binding Filter,NotifyOnTargetUpdated=True}" Width="50" TargetUpdated="FieldUpdated"/>
</tk:RadGridView.Columns>

However, when I edit the data, the TargetUpdated event does not seem to be triggered.

Is this event supported by GridViewDataColumns?

Thanks,

Nick.
Dimitrina
Telerik team
 answered on 03 Oct 2013
3 answers
134 views
Is it possible to make the timerulerlinestyle create a thicker line on the hour for greater visual clarity on the scheduler?  See attached grab for example
Kalin
Telerik team
 answered on 03 Oct 2013
4 answers
217 views
Hi,

we would like to have a simple hierarchical GridView with sub grid that is shown after expanding a row, as usual.
 
The catch is that we want the subgrid in row details to be sharing the same column headers (i.e. columns) with the original parent grid, since the data in the parent and child grids is of same structure. That way we save on introducing another header showing same column headers and the UI becomes cleaner and easier to understand.

Note that functionality like resizing columns should still be working, i.e. resizing both main and sub grids. We are not that concerned about grouping, but I suppose it would be nice for it to still work on the parent grid at least.

What is the best way of implementing this?

Thanks,
Stevo
Dimitrina
Telerik team
 answered on 03 Oct 2013
1 answer
246 views
Hello all,
I want to add and Expand/Collapse button in a WPF RadGridView, could you please tell me if it is possible to do that ?
Thanks in advance
Dimitrina
Telerik team
 answered on 03 Oct 2013
1 answer
448 views
I have a RadSlider from 1 to 10, everything is working the way I want to, but the Slider always starts with a value of 10. I want the default value to be 1. How can I set this up?
Pavel R. Pavlov
Telerik team
 answered on 03 Oct 2013
3 answers
168 views
Is there the ability to put the text outside his shape?
Attached expected vs actual.
Thanks
Manuel
Top achievements
Rank 1
 answered on 02 Oct 2013
2 answers
100 views
Hello,
I derived the DataFormDataField class to return a RadMaskedNumericInput control.  Three problems are readily apparent.

1. The DataMemberBinding does not propagate to the control from the DataFormDataField derivative.
2. The IsReadOnly property is not propagated to the control.
3. The Width property of the DataFormDataField class does not effect the Width of the control.


Here's the code...
/// <summary>
/// Numeric specific <c>DataFormDataField</c>.
/// </summary>
public class DataFormNumericField : DataFormDataField
{
 
    /// <summary>
    /// Returns a control to display and edit the underlying data.
    /// </summary>
    /// <returns><c>Control</c></returns>
    protected override Control GetControl()
    {
        RadMaskedNumericInput ctrl = new RadMaskedNumericInput();
 
        return ctrl;
    }
}

You'll notice below, there is an extension to the DataFormDataField that sets the width of the label portion.  Other than that, it is a standard DataFormDataField derivation.
<amUI:DataFormNumericField x:Name="BatchNumberField"
                           DataMemberBinding="{Binding SelectedBatch.JournalEntryBatchNumber,
                                ValidatesOnDataErrors=True,
                                ValidatesOnExceptions=True,
                                NotifyOnValidationError=True,
                                UpdateSourceTrigger=PropertyChanged}"
                           Label="{x:Static localProperties:Resources.Batch_Number}"
                           Width="163"
                           amUI:DataFormColumn.LabelColumnWidth="80"
                           IsReadOnly="True">
    <amUI:DataFormNumericField.Resources>
        <Style TargetType="telerik:RadMaskedNumericInput">
            <Setter Property="Placeholder"
                    Value=" " />
            <Setter Property="SelectionOnFocus"
                    Value="SelectAll"/>
            <Setter Property="IsClearButtonVisible"
                    Value="False" />
            <Setter Property="AllowSkipPlaceholders"
                    Value="False" />
            <Setter Property="AutoFillNumberGroupSeparators"
                    Value="False" />
            <Setter Property="AutoFillZeros"
                    Value="False" />
            <Setter Property="Mask"
                    Value="#10" />
        </Style>
    </amUI:DataFormNumericField.Resources>
</amUI:DataFormNumericField>

Could you provide an example where these three issues are addressed?

Thanks in advance,
Steve
Steve
Top achievements
Rank 1
 answered on 02 Oct 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?