Telerik Forums
UI for WPF Forum
1 answer
112 views
Hi,

I would like to use tiles to display as a left side menu for an application.
For now, i can only use as panoramic view...

So is it possible to stack tiles vertically and use it as side menu?


Thanks in advance,

Kind Regards.
Yoan
Telerik team
 answered on 14 May 2014
3 answers
151 views
Hi,
     Is there any way in telerik richtextbox for seprating or cancel cell merge, once you merge 2 cells? similar functionality in word with split cells?. Please suggest some thing in this regard


Thanks.
Petya
Telerik team
 answered on 14 May 2014
5 answers
136 views
Hi,

I have a viewmodel define as the following and I dont know why but the value in the setter of the SelectedSlot property are null verry often:

   public class ViewModel : Telerik.Windows.Controls.ScheduleView.Appointment
    {
        #region Constructors.
        public ViewModel()
        {
            mGroupFilter = new Func<object, bool>(GroupFilterFunc);
        }
        #endregion

        #region Public handlers.
        internal delegate void SlotSelectionChangedHandler(object pSender, ScheduleViewSlotSelectionChangedArgs pArgs);

        internal event SlotSelectionChangedHandler OnSlotSelectionChanged;
        #endregion

        #region Public methods.
        public Func<object, bool> GroupFilter
        {
            get
            {
                return mGroupFilter;
            }
            private set
            {
                if (mGroupFilter != value)
                {
                    mGroupFilter = value;
                    OnPropertyChanged(() => GroupFilter);
                }
            }
        }
        #endregion

        #region Private methods.
        private bool GroupFilterFunc(object pGroupName)
        {
            if (pGroupName is DateTime)
            {
                return ((DateTime)pGroupName).DayOfWeek != DayOfWeek.Saturday && ((DateTime)pGroupName).DayOfWeek != DayOfWeek.Sunday;
            }

            return true;
        }
        #endregion

        #region Public properties.
        public Slot SelectedSlot
        {
            set
            {
                if (mSelectedSlot != value)
                {
                    mSelectedSlot = value;                    
                    this.OnPropertyChanged("SelectedSlot");

                    if (this.OnSlotSelectionChanged != null)
                    {                        
                        ScheduleViewSlotSelectionChangedArgs args = new ScheduleViewSlotSelectionChangedArgs();

                        args.NewSlot = mSelectedSlot;

                        this.OnSlotSelectionChanged(this, args);
                    }
                }
            }
            get
            {                
                return mSelectedSlot;
            }
        }
        #endregion

        #region Private members.
        private Func<object, bool> mGroupFilter;
        private Slot mSelectedSlot;
        #endregion
    }

Thank's
Alain
Yana
Telerik team
 answered on 14 May 2014
1 answer
92 views
Hi,

Can you include implicit theme inside "Themes" zip in "Other Setup Files"? I am now have to download "Digitally Signed Manual Installation" and "Manual Installation" zip files in order to extract digital signed dll and implicit theme which is only included in manual installation zip. Thanks.
Yana
Telerik team
 answered on 14 May 2014
2 answers
316 views
I am using Expression_DarkTheme.

There is one  problem.

My window tilte color is setted white color.

I want to change the color(white -> black).

What should I do?
Lee
Top achievements
Rank 1
 answered on 14 May 2014
1 answer
170 views
I have created a user control as follows:
<UserControl x:Class="SpdrRiskDetail.SpdrRiskDetailControl"
 
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
              
             xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
             xmlns:pivot="http://schemas.telerik.com/2008/xaml/presentation/pivot"
             xmlns:data="clr-namespace:SpdrRiskDetail"
             mc:Ignorable="d"
             d:DesignHeight="300" d:DesignWidth="300">
    
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="3*" />
            <ColumnDefinition Width="*" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>
        
        <pivot:RadPivotGrid x:Name="mainPivotGrid" Grid.RowSpan="2" />
        <pivot:RadPivotFieldList x:Name="mainFieldList" Grid.Column="1" Margin="4 0 0 0"/>
    </Grid>
</UserControl>
I have referenced the follows Telerik DLL's:
Pivot.Core, Windows.Controls.Windows.controls.pivot,windows.controls.pivotfieldlist, telerik.windows.data. I have checked that they are all the same version
(2014.1.414.45 ) however I get the error "The name "RadPivotGrid" does no exist in the namespace http://schemas.telerik.com/2008/xaml/presentation/pivot. I also get exactly the same error for "RadPivotFieldList". What am I missing - please advise as I have been running around in circles for hours now. Thank you






Rosen Vladimirov
Telerik team
 answered on 13 May 2014
1 answer
299 views
Hello

How can I access to rows for specific row in parent-children relation? Something like:
gridView.Rows[1].Childrens (type IEnumerable<GridViewRow>)
Boris
Telerik team
 answered on 13 May 2014
1 answer
121 views
Hi 
I want to setup an RadChart with images as X Values. Is this possible? I would prefer the chart in 3D.

Thanks in advance

Dimos
Evgenia
Telerik team
 answered on 13 May 2014
1 answer
353 views
hello!

I try to use telerik-docking control with MVVM pattern.
I saw this article, and others.


my question is:

I bind the PanesSource property to ObservableCollection<PaneViewModel>.

when I add item to the ObservableCollection, it's add pane to the control,
but, when I close any pane, it's not remove the viewmodel from the collection!

How can I sync the collection with the panes well?

thanks!
Vladi
Telerik team
 answered on 13 May 2014
3 answers
303 views
Hi guys... again. I started similar topic in GridView forum. But now I get another inner exception when trying to run app: "Required permissions cannot be acquired."
App runs on Bloomberg App Portal.

Controls version is 2013.2.724.40 for .net 4.0,
Visual Studio 2013 with latest updates,
Windows 8.1
Dimitrina
Telerik team
 answered on 13 May 2014
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?