Telerik Forums
UI for WinForms Forum
2 answers
196 views
I try to make a drag and drop with multiple items from a radlisview to a radtreeview while keeping double click in the radlistview to open another window.
I also try with a radlistcontrol but it doesn't work. Could you help me please ?
olivier pareige
Top achievements
Rank 1
 answered on 21 May 2014
3 answers
224 views
I have searched and searched, but cannot figure out how to have each bar in each series be a different color from the bound palette per category.  Is this doable?  It appears so if you manually create each series, but my series are dynamic.  Attached is the markup for my chart control in its current state.

I also cannot get the smart labels to do anything.  I'm not sure if I have declare the strategy correctly or not.

<telerik:RadCartesianChart Palette="{Binding Palette}"
                                      telerik:ChartSeriesProvider.IsDynamicSeries="True"
                                      TooltipTemplate="{StaticResource BarChartTemplate}"
                                      HoverMode="FadeOtherSeries">              
               <telerik:RadCartesianChart.SmartLabelsStrategy>
                   <telerik:ChartSmartLabelsStrategy/>
               </telerik:RadCartesianChart.SmartLabelsStrategy>
               <telerik:RadCartesianChart.VerticalAxis>
                   <telerik:LinearAxis LabelFormat="N2"/>
               </telerik:RadCartesianChart.VerticalAxis>
               <telerik:RadCartesianChart.HorizontalAxis>
                   <telerik:CategoricalAxis />
               </telerik:RadCartesianChart.HorizontalAxis>
               <telerik:RadCartesianChart.SeriesProvider>
                   <telerik:ChartSeriesProvider Source="{Binding BarData}">
                       <telerik:ChartSeriesProvider.SeriesDescriptors>
                           <telerik:CategoricalSeriesDescriptor ItemsSourcePath="ChartData"
                                                                ValuePath="Value"
                                                                CategoryPath="Category">
                               <telerik:CategoricalSeriesDescriptor.Style>
                                   <Style TargetType="telerik:BarSeries">
                                       <Setter Property="CombineMode"
                                               Value='Cluster' />                                      
                                   </Style>
                               </telerik:CategoricalSeriesDescriptor.Style>
                           </telerik:CategoricalSeriesDescriptor>
                       </telerik:ChartSeriesProvider.SeriesDescriptors>
                   </telerik:ChartSeriesProvider>
               </telerik:RadCartesianChart.SeriesProvider>
           </telerik:RadCartesianChart>
Peshito
Telerik team
 answered on 21 May 2014
1 answer
92 views
I am using Telerik Q1 2014 DEMO ,
how can I have CollapsiblePanel which have (two MaskedEditBox) in RadCommandBar ? 
OR
something similar to CollapsiblePanel to have such functionality in RadCommandBar ? 
David
Top achievements
Rank 1
 answered on 21 May 2014
2 answers
107 views
I would like to eliminate the Panel and Separator items that load underneath the OverFlowButton.DropDownMenu when I set the following values:
                strip.OverflowButton.AddRemoveButtonsMenuItem.Visibility = ElementVisibility.Collapsed;
                strip.OverflowButton.CustomizeButtonMenuItem.Visibility = ElementVisibility.Collapsed;

I find that if I set the above to Hidden, the Panel and Separator still show, but full size.   If I set them to Collapsed, they are shorter in size, which is better, buy my goal is to eliminate them altogether.

Please see the result in the attachment.

Thanks,

Laura
Ken
Top achievements
Rank 1
 answered on 20 May 2014
7 answers
77 views
Hi, please let me know immediately if possible.  I've been working on our theme for probably about 5 or 6 hours and on the RadPanarama > RadPanaramaElement node I just clicked on "PanaramaBackgroundImage (ImagePrimitive)" and now VSBuilder is "not responding".  It's been this way for about 20 minutes now.  To my dismay, I just checked the Modified Date on the .tssp file and it's from weeks ago (so I never saved, argh!).

Please please please tell me there's an autosave file in some temp folder somewhere =).  I really think I just lost an entire afternoon (on the weekend, no-less) worth of work.

I'm not sure what caused it to lock up...

Thanks
Dimitar
Telerik team
 answered on 20 May 2014
1 answer
79 views
Hello,

I have used a RadGridView for listing results in my form. By default, I have enabled paging & filter for the RadGrid. Once the results are listed, filter on a column is working fine for first page(First Index). When I switch to second page index & apply a filter on any column (i.e disabling all options & then selecting one). And then when I press ok, on pop-up menu, then it throws me error.

Please help..

Thanking you.
Ravi
Dimitar
Telerik team
 answered on 20 May 2014
1 answer
263 views
Hi

I'm working with radtreeview and have nodes with long names (see the picture). When i click on such nodes radtreeview make horizontal autoscrolling and do not showing the tooltip. How can i disable autoscrolling (but scroller must be visible) and show tooltip for such items with its text). I set property ShowItemTooltip to TRUE, but tooltip is not showing.

Thanks.
 
⇄
English (auto-detected) » Russian
 
George
Telerik team
 answered on 20 May 2014
1 answer
74 views
I am using rad controls for winforms Q3 2010 and as per the requirement, there are two childs (same level and placed horizontally) for the parent.  
When I expand the parent if first child has records to display those are getting displayed but if there is no data in second child and when I clicks on the second child and coming back to first child I can't see any data (though it has...I have to scroll the mouse to see the data) and if both child's having data no issues.

Screen shots attached....
Could you please help me to resolve the issue....Thanks in advance


Praveen.
George
Telerik team
 answered on 19 May 2014
4 answers
196 views
Why can't I see the Metro theme applied to a Rad form in Visual Studio 2013. Is this expected?
Dimitar
Telerik team
 answered on 19 May 2014
1 answer
134 views
Hi ,

I was developed custom cell for web browser and every things work fine but one more problem happened and I can not find solution for it .

The problem was when scrolling , the custom cell come over the the column header , please the picture in attached .

class WebBrowserCellElement : GridDataCellElement
        {
            public WebBrowserCellElement(GridViewColumn column, GridRowElement row) : base(column, row) { }
 
            RadWebBrowserElement radWebBrowserElement;
 
            protected override SizeF ArrangeOverride(SizeF finalSize)
            {
                if (this.Children.Count == 1)
                {
                    RectangleF browserrRect = new RectangleF(5, 5, finalSize.Width - 6, finalSize.Height - 10);
 
                    this.Children[0].Arrange(browserrRect);
                }
              
                return finalSize;
            }
 
            protected override void CreateChildElements()
            {
                base.CreateChildElements();
 
                 radWebBrowserElement = new  RadWebBrowserElement();
 
                this.Children.Add(radWebBrowserElement);
            }
            
 
            protected override void SetContentCore(object value)
            {
                if (this.Value != null && this.Value != DBNull.Value)
                {
                    radWebBrowserElement.DocumentText = this.Value.ToString();
                }
            }
 
             
            protected override Type ThemeEffectiveType
            {
                get
                {
                    return typeof(GridDataCellElement);
                }
            }
 
            public override bool IsCompatible(GridViewColumn data, object context)
            {
                return data is WebBrowserColumn && context is GridDataRowElement;
            }
 
        }
         
        public class WebBrowserColumn : GridViewDataColumn
        {
            public WebBrowserColumn(string fieldName)
                : base(fieldName)
            {
               
            }
 
             
 
            public override Type GetCellType(GridViewRowInfo row)
            {
 
                if (row is GridViewDataRowInfo)
                {
                    return typeof(WebBrowserCellElement);
                }
                return base.GetCellType(row);
            }
        }
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 May 2014
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?