Telerik Forums
UI for WPF Forum
1 answer
133 views
Hi.

when I place a RadNumericUpDown inside a RadBusyIndicator, the NumericUpDown looks disabled until I move the mouse cursor over it. 
I tested this with a minimal example:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"                       
        Title="MainWindow" Height="100" Width="100">
     
    <telerik:RadBusyIndicator>
        <telerik:RadNumericUpDown />     
    </telerik:RadBusyIndicator>
</Window>

When you start the example, the RadNumericUpDown is grayed out, but isn't disabled.
We are using Telerik WPF-Controls 2012.1.215.40. Is there a fix for this issue?

Best regards, 
   Jörg.
Georgi
Telerik team
 answered on 13 Mar 2012
1 answer
151 views
Hello,
I purchase an HP touchSmart PC, I would like to know if I have a WPF application with telerik components (Book) does it works on the Touch PC? I mean what is the behaviour of the Book component, can i open the book and zoom it with fingers?
thanks
Tina Stancheva
Telerik team
 answered on 13 Mar 2012
3 answers
121 views
Hello I would like to implement a tooltip that displays multiple fields of my Object.
So far the only solution I have found is creating a Itemtemple with TooltipService.Tooltip filled in.
This work except for one thing, if I do this I must remove DisplayMemberPath="Name".

But if I do this the search funtion does not work anymore.
Meaning if I type "s" it does not jump anymore to the first item that start with an "s" in its name.

How can I resolve this?
Konstantina
Telerik team
 answered on 13 Mar 2012
2 answers
350 views
Hi,
I have a probelm. In richtextbox I am able to inserting the image.
Its rendering with original size. 

private void AddImages(List<byte[]> productImages)
{
	foreach (var item in productImages)
{
this.rtbEditor.InsertImage(new MemoryStream(item),"png");
this.rtbEditor.Insert("   ");
}
}

But how to insert the images with fixed size (32 x 32) ?

Thanks for your help.

Thanks and Regards
Naresh Mesineni
Iva Toteva
Telerik team
 answered on 13 Mar 2012
1 answer
116 views
Hello EVERYONE!

I am having a problem with RadGuage Major Ticks, See attachment for detailed understanding.

After application get started, We can see everything working fine, but ticks are taking weird look as soon as I maximize the screen and restore it to default view.

Please help me to solve it.

Advanced Thanks!!

Maulik Suchak
www.mauliksuchak.in
Andrey
Telerik team
 answered on 13 Mar 2012
1 answer
114 views
I have created attached example where i would drag controls like pushbuttons or checkbox.

1) In the attached example all works , but my Button is inglobated inside Shape while i would see only my Pushbutton with the real size

2) Have you one simple example or better this modified in binding with one class with width / height properties where the displayed control is Button or textbox dependig by class type using data template ?

Best regards

Claudio Rossi
Tina Stancheva
Telerik team
 answered on 13 Mar 2012
1 answer
99 views
I have an RadDocument and added a MailMergeDataSource to it.
I want to merge the first record.

When using this:
editor.Document.MailMergeDataSource.MoveToFirst();
resultDoc = editor.Document.MailMergeCurrentRecord();
... the CurrentItem seems to be empty: 

But, doing it this way:
editor.Document.MailMergeDataSource.MoveToFirst();
editor.Document.MailMergeDataSource.MoveToNext();
editor.Document.MailMergeDataSource.MoveToPrevious();
resultDoc = editor.Document.MailMergeCurrentRecord();
..., the CurrentItem is Ok: 



Iva Toteva
Telerik team
 answered on 13 Mar 2012
7 answers
152 views
Hello!
RadExpander is a nice component that I want to use in my application. Unfortunately there is a small draw back to it: each time I click it there is that dotted frame visible that I would like to hide it, 
please check the attached images
Is there a work arount for it?

Thank you!
Roxana C
Petar Mladenov
Telerik team
 answered on 13 Mar 2012
4 answers
135 views
I have problem with a Delete button that I added beside this GridView. At the runtime its IsEnabled property goes "false"!
would you please help me to figure it out, why?

Here is the XAML Code:

<telerik:RadGridView Margin="12,12,12,68" Name="radGridView1" AutoGenerateColumns="False" FlowDirection="RightToLeft"
                             ElementExporting="radGridView1_ElementExporting" ShowColumnFooters="True" ShowGroupFooters="True" AutoExpandGroups="True"
                             ShowInsertRow="False" SelectionMode="Extended" ActionOnLostFocus="None">
            <telerik:RadGridView.Columns>
                                                               ...
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>

        <Button Height="50" HorizontalAlignment="Left" Margin="68,0,0,12" x:Name="btnDelete" VerticalAlignment="Bottom" Width="50" Click="btnDelete_Click" Command="telerikGrid:RadGridViewCommands.Delete" CommandTarget="{Binding ElementName=RadGridView1}"/>

and this is the code-behind it:

public partial class myProgram : Page
    {
        KDBEntitiesSecond DBContext = new KDBEntitiesSecond();

        public myProgram()
        {            
            InitializeComponent();

            var queryGrid = from c in DBContext.TblLeads select c;
            radGridView1.ItemsSource = queryGrid;

        }
        private void btnDelete_Click(object sender, RoutedEventArgs e)
        {            
            DBContext.SaveChanges();
        }
    }

Thanks in advance!
Kevin
Top achievements
Rank 1
 answered on 12 Mar 2012
2 answers
103 views
When I select an item in a RadTreeListView, press CTRL+C to copy, and paste into notepad, the results suggest to me that what the control is actually doing is calling the list item's ToString() method and placing the string result on the clipboard. The objects we display in our list view do not override ToString(), so the copied result is the return value from Object.ToString(), which is the name of the type.

Since we can't come up with a useful string representation of the objects we display, we'd rather just disable the copy operation, rather than have it put some not-very-useful string on the clipboard. Is there a way to do this?

Thanks,
Larry
Larry
Top achievements
Rank 1
 answered on 12 Mar 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?