Telerik Forums
UI for WinForms Forum
3 answers
200 views

Is there a property to increase the indent of each level of the child groups?

Thanks.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2020
3 answers
163 views

Greetings,

I have 2 controls  :

1-  Rad Carousel (name =  Slideshow) , with 5 Image items , each image is labeled on with its corresponding index.

2- Label1

 

I wrote the code below to check the selected item of Rad Carousel control (Using a very simple method : showing the selected index value in form of a label's text)

 

Private Sub SlideShow_SelectedItemChanged(sender As Object, e As EventArgs) Handles SlideShow.SelectedItemChanged
 
           Label1.Text = SlideShow.SelectedIndex
 
 
   End Sub
 
   Private Sub SlideShow_SelectedIndexChanged(sender As Object, e As EventArgs) Handles SlideShow.SelectedIndexChanged
 
           Label1.Text = SlideShow.SelectedIndex
 
       End If
 
   End Sub

 

I attached a gif file that illustrates the issue with odd indexing.

Surprisingly,  When I switch between items moving backward and forward, the selected item's index, shown in the label, doesn't match with the real indexing of the item . As you can see, clicking on the right arrow of the Rad Carousel seems to work just fine and indexing is correctly shown, but clicking on the left arrow of the Rad Carousel doesn't seem to be showing the real index of the selected item (doesn't make any sense).

 

Thanks for your attention.

Nadya | Tech Support Engineer
Telerik team
 answered on 30 Jul 2020
3 answers
517 views
Hi,
Is there a way to hide a total column? (I want to hide the middle total column in image Untitled.png)
Also I want to create a calculated column due "MAS Fund", "Manager Product" and "Date" values (Untitled2.png) Is it posible?

Regards
Paulo
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2020
2 answers
213 views

Hi, 

I want to add the Previous and Next buttons to a tab strip on the RadDock.

I followed https://www.telerik.com/forums/660191-dock-host-window-scrollbars to get the buttons visible, however they are just disabled and do not have any functionality to them. 

The item list has multiple items in it, so there's definitely items to scroll through. 

 

What am I missing?

Thanks,
Dan

Daniel
Top achievements
Rank 1
 answered on 29 Jul 2020
5 answers
243 views

Hello!

I have a grid that adds a little triangle image to cells that contain note information. The triangles are rendering properly and show the correct content when hovering over them but as soon as you begin to scroll the grid the triangles start to appear on other cells that they shouldn't. I have attached some images showing the issue. The first triangle is correct but then the subsequent ones are added when you start to scroll down or minimize the window and then maximize it again. The code I'm using is below and I can't figure out what the problem could be. 

Thanks for any help!

 

private void gridOptions_CellFormatting(object sender, CellFormattingEventArgs e)
{
  if (e.Column.Name == "colText")
  {

     // Add a triangle if the row contains note data.

    if (!string.IsNullOrEmpty(OptionRowNotes(tJobOption.fAuditNotes, e.Row))
      && e.CellElement.Children.Count == 0)
    {
      var image = new RadImageItem();
      image.Image = Resources.RedTriangle;
      image.ToolTipText = OptionRowNotes(tJobOption.fAuditNotes, e.Row);
      image.PositionOffset = new SizeF(e.CellElement.ColumnInfo.Width - 10, -1);
      image.ZIndex = 1;
      e.CellElement.Children.Add(image);
    }
  }
}
Nadya | Tech Support Engineer
Telerik team
 answered on 29 Jul 2020
3 answers
119 views

I have code like the following:

        public RadDocument SetPracticeNotesRtf(string practiceNotes)
        {
            return !string.IsNullOrEmpty(practiceNotes) ? new RtfFormatProvider().Import(practiceNotes) : null;
        }

In the code block (a loop) I am working with:

                                    var docMerger = new RadDocumentMerger(SetPracticeNotesRtf(firstNoteRtf));
                                    docMerger.AppendDocument(SetPracticeNotesRtf(nextNoteRtf));
All code is working exactly as intended (the Rtf strings are well formed, etc.)--except that I don't get a merger.  The firstNoteRtf does not change (other than the attempted merger) while the nextNoteRtf changes with each new record.

The intent is to consolidate log entries (all entries for a given day merged into one). However, no matter how I juggle the first/next etc. I always end up with either the first note or the last note - only.

What am I missing?

Dimitar
Telerik team
 answered on 29 Jul 2020
1 answer
802 views

I made the following code to implement this:

e.SelectedTabChanged += (obj, ev) =>
            {
                foreach(RadTabbedFormControlTab tab in e.Tabs)
                {
                    tab.Item.BackColor = Color.FromArgb(0, 255, 255, 255);
                    tab.Item.BorderColor = Color.FromArgb(0, 255, 255, 255);
                    tab.Item.ShadowColor = Color.FromArgb(0, 255, 255, 255);
                }
                e.SelectedTab.Item.BackColor = Color.White;
                e.SelectedTab.Item.BorderColor = Color.White;
                e.SelectedTab.Item.ShadowColor = Color.White;
            };

 

It is right? Or is there another way to change the colors of the tabs when they become active?

Nadya | Tech Support Engineer
Telerik team
 answered on 28 Jul 2020
7 answers
153 views
Hi
Could you help me how to customize scheduler print setting dialog. i need to to change the culture of two calendars in print setting dialog(they have been highlighted in my attached file).
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Jul 2020
5 answers
214 views

HI,

Just installed the latest release,  Q1 2013 SP1 (version 2013.1.321)

RadPivotGrid

  • IMPROVED: Exposed a method for accessing cell values.
  • FIXED: Unable to open the Filter Popup Dialog when filter items contain DBNULL values.


How do I access the cell values as stated above?

Also is it possible to add a calculation field to a pivot grid?

Cheers

Shaun.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Jul 2020
3 answers
183 views

Hello! There was a problem. I wanted to change the color of the "Add" button (the button with the plus icon).
I found this element in the style editor (attach a screenshot).
But I can't find how to find this element and change the color through the code. Please tell me how to do this?

 

Nadya | Tech Support Engineer
Telerik team
 answered on 27 Jul 2020
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
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?