Telerik Forums
UI for WinForms Forum
6 answers
913 views

Good afternoon,

I would like to change grid cursor movement behavior when pressing Enter key in the grid with grouped records. I need to move cursor only through the column cells without focusing a group header.  Is it doable?

My grid settings are:

radGridView1.MasterTemplate.AutoExpandGroups = true;
radGridView1.EnterKeyMode = RadGridViewEnterKeyMode.EnterMovesToNextRow;
Tomas
Top achievements
Rank 2
Veteran
 answered on 03 Aug 2020
4 answers
261 views

Hi Admin,

 

I would like to do command button put to center by vertical ( black square location). please see photo.

 

Thanks

Moe

Moe
Top achievements
Rank 1
Iron
Iron
Veteran
 answered on 03 Aug 2020
1 answer
208 views

Hi,

When I have a window in floating mode then keyboard tabbing will tab around the controls within the window, rolling around from the last control to the first control.

However, when the same window is docked and I tab, the focus 'escapes' from the window and enters another area.

Is there a way to keep the focus within a docked window on tab?

Nadya | Tech Support Engineer
Telerik team
 answered on 31 Jul 2020
5 answers
125 views

Hi.

Can different localizations be applied for different grids on a form? For example, one is English, one is German, the other is Spanish, etc.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2020
3 answers
168 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
144 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
445 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
153 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
207 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
93 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
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)
Chart (obsolete as of Q1 2013)
Form
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+129 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?