This is a migrated thread and some comments may be shown as answers.

RadOutlookBar all items minimized in new version?

14 Answers 276 Views
OutlookBar
This is a migrated thread and some comments may be shown as answers.
NoRyb
Top achievements
Rank 1
NoRyb asked on 27 Apr 2010, 07:48 AM
Hi

Since I've updated to the latest release of the Telerik components, all the items in my Outlookbar are minimized. I've set the ActiveItemsMaxCount to 99 but this had no effect. How do I get the Items to be active?

Thank you

14 Answers, 1 is accepted

Sort by
0
Kiril Stanoev
Telerik team
answered on 30 Apr 2010, 09:14 AM
Hi Hubert,

Unfortunately I was not able to reproduce the issue. Could you please share more details on your particular scenario? Also, it would be great if you can attach a sample project demonstrating the issue. This way we will be better able to assist you.
I am attaching my test project for further reference. Have a look at it and let me know if I am missing something.

Kind regards,
Kiril Stanoev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
NoRyb
Top achievements
Rank 1
answered on 30 Apr 2010, 10:58 AM
Hello!

I'm not able to reproduce it anymore, I've moved to Windows 7 theme, there eveything worked and I added Icons. Now I built it back to what it was and it doesn't happen anymore. It is no longer a problem for me as everything works fine now.

Thank you for your support though.

Best Regards
0
Kiril Stanoev
Telerik team
answered on 30 Apr 2010, 12:56 PM
Hi Hubert,

I'm glad everything turned out well. If you experience any additional issues, do not hesitate to contact us.

Greetings,
Kiril Stanoev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Abdelhak LAKNIN
Top achievements
Rank 1
answered on 10 Aug 2010, 02:51 PM
Hi everybody,

I encounter the same problem. To be sure I replaced my code by the published code on : http://www.telerik.com/help/wpf/radoutlookbar-getting-started.html inthe project.
But all the items in my Outlookbar are still minimized. How do I get the Items to be active?
Office_blue is the theme applied on the application.


Thank you!
0
Iwhp
Top achievements
Rank 1
answered on 10 Aug 2010, 11:06 PM
Same issue here. Running Windows 7. Switching to Telerik.Windows.Controls.Windows7Theme() did not help.
0
Iwhp
Top achievements
Rank 1
answered on 11 Aug 2010, 02:58 PM
Update: I was using RadRibbonWindow while I was expierenceing the issue above.
I now changed back to the .NET v4 Window and the RadOutlookBar is working fine!
Cheers Harry
0
Iwhp
Top achievements
Rank 1
answered on 12 Aug 2010, 08:18 PM
I justed verified... this behavior is also true for Version: 2010.2 812 (Aug 12, 2010).
I have a sample app, but how to upload (only images allowed).

Cheers Harry
0
Miroslav
Telerik team
answered on 13 Aug 2010, 09:00 AM
Hi Harry Pfleger,

Thank you for the additional details.

Can you try setting a MinHeight of the RadOutlookBar?

You can past some of your code / xaml here.

Regards,
Miroslav
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Iwhp
Top achievements
Rank 1
answered on 13 Aug 2010, 09:37 AM
Thankx Miroslav, that works just fine...

<telerik:RadOutlookBar MinimizedAreaVisibility="Collapsed"
                               Grid.Row="1" MinHeight="250">
0
Abdelhak LAKNIN
Top achievements
Rank 1
answered on 13 Aug 2010, 09:40 AM
Thanks Miroslav, that works fine for me too!
0
Simon
Top achievements
Rank 1
answered on 03 Nov 2010, 08:10 PM
Hi,

I'm facing the same problem.  I did change many properties (including MinHeigth) without success.

Here's a print screen showing the XAML and the UI result.

Simon
0
Viktor Tsvetkov
Telerik team
answered on 05 Nov 2010, 03:30 PM
Hi Simon,

There is no more such problem, so you could expect the fix with the upcoming release of our controls.

Kind regards,
Viktor Tsvetkov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Simon Störmer
Top achievements
Rank 1
answered on 13 Dec 2010, 03:56 PM
Hi,

the issue still arises in Q3 2010. Setting MinWidth helps, but I don't think this is a good solution. I add the Items in code because they are dynamically generated. Is there anything I can do? We inherited from RadOutlookBar and added the following method:

public void AddGroup(String GroupName)
{
    if (m_Groups.ContainsKey(GroupName))
        return;
  
    RadOutlookBarItem Item = new RadOutlookBarItem();
    Item.Header = GroupName;
    Item.FontWeight = FontWeights.Bold;
    Item.FontSize = 12;
    Item.MinHeight = 30;
    Item.Content = ItemContent;
    this.Items.Add(Item);
  
    m_Groups.Add(GroupName, ItemContent);
}

Anything I can do here?

Greetings, Tobias.
0
Viktor Tsvetkov
Telerik team
answered on 13 Dec 2010, 05:00 PM
Hi Tobias Richling,

Could you please clarify what exactly your problem is (send a screencast), or better send us a sample project that reproduces it?

Regards,
Viktor Tsvetkov
the Telerik team
Browse the videos here>> to help you get started with RadControls for WPF
Tags
OutlookBar
Asked by
NoRyb
Top achievements
Rank 1
Answers by
Kiril Stanoev
Telerik team
NoRyb
Top achievements
Rank 1
Abdelhak LAKNIN
Top achievements
Rank 1
Iwhp
Top achievements
Rank 1
Miroslav
Telerik team
Simon
Top achievements
Rank 1
Viktor Tsvetkov
Telerik team
Simon Störmer
Top achievements
Rank 1
Share this question
or