Telerik Forums
UI for WinForms Forum
1 answer
140 views
Most of my grids resize without issue.  I have another issue that is extremely difficult to see the column width stretch icon and subsequently widen or shrink the grid.  You have to move the mouse extremely slowly and place it just over the line between columns to see the stretch icon.  This is almost non-functional.  Any ideas?
Dimitar
Telerik team
 answered on 22 Mar 2018
5 answers
153 views

how can I detect if the cellclick comes from the template or the master grid?

 

thanks

andre

Andre
Top achievements
Rank 1
 answered on 21 Mar 2018
2 answers
334 views

Hi, 

Version: 2017.3.1017.20

Code to reproduce problem below. Just create new form and copy-paste code below.

public partial class Form : System.Windows.Forms.Form
  {
      public Form()
      {
          InitializeComponent();
      }
       
      private void Form_Load(object sender, EventArgs e)
      {
          RadGridView grid = new RadGridView();
          grid.Dock = DockStyle.Left;
          grid.SortDescriptors.Add("Id", ListSortDirection.Ascending);
          grid.SelectionMode = GridViewSelectionMode.FullRowSelect;
 
          BindingList <X> bindingList = new BindingList<X>();
          bindingList.Add(new X() { Id = 1, Name = "Row 1" });
          bindingList.Add(new X() { Id = 5, Name = "Row 5" });
          bindingList.Add(new X() { Id = 3, Name = "Row 3" });
          bindingList.Add(new X() { Id = 4, Name = "Row 4" });
          bindingList.Add(new X() { Id = 2, Name = "Row 2" });
          bindingList.Add(new X() { Id = 6, Name = "Row 6" });
          bindingList.Add(new X() { Id = 7, Name = "Row 7" });
          bindingList.Add(new X() { Id = 8, Name = "Row 8" });
          bindingList.Add(new X() { Id = 9, Name = "Row 9" });
          bindingList.Add(new X() { Id = 10, Name = "Row 10" });
 
          Controls.Add(grid);
 
          grid.DataSource = bindingList;
 
          RadButton radButton = new RadButton();
          radButton.Text = "Delete row";
          radButton.Dock = DockStyle.Right;
          radButton.Click += delegate
          {
              var selected = (X)grid.CurrentRow.DataBoundItem;
              bindingList.Remove(selected);
          };
 
          Controls.Add(radButton);
      }
  }
 
  public class X
  {
      public Int32 Id { get; set; }
      public String Name { get; set; }
  }

 

My grid is connected to binding list. Clicking on the button remove currently selected row from binding list. 

The problem is: Sometimes after deleting, nearest row is selected. Sometimes grid is clearing selection.

Please see attached gif.

I would like the next record to be always selected after deleting current one.

If deleted row was last row, it should select previous one.

I was trying to use GridNavigator.SelectPreviousRow(1) and GridNavigator.SelectNextRow(1) but it do not work, becouse sometimes after deleting row grid is clearing selection.

konrad
Top achievements
Rank 1
 answered on 21 Mar 2018
16 answers
619 views
When i n export Gridview to excel column that contain datetime data like '14/06/2009' will export like '30987' value.

Did some know how to solve this?

Thank

Vidhya
Top achievements
Rank 1
 answered on 20 Mar 2018
4 answers
155 views

How can I set it up so that when a user selects a day in the Scheduler, then selects to create a recurring appointment, the Edit Recurring Appointment dialog will, when Weekly recurrence type is selected, set the Day of Week to the Day of Week selected in the calendar, NOT the Day of Week in real-time.

Thank you!

-Scott

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Mar 2018
2 answers
101 views
how can i expand the associated templategrid (from a radgridview hierarchy) by cellclick ?
thanks 
andré
Andre
Top achievements
Rank 1
 answered on 20 Mar 2018
1 answer
240 views

Hi,
      We are developing a desktop application in c# using Telerik controls. We are using RAD PDF VIEWER  to load a fillable PDF form that is created in adobe acrobat.The tab key does not obey the tab order in the PDF. Instead, the control goes to the buttons outside the RAD PDFViewer. Can you help me to find a solution for this tab issue?

Regards,

Priyank J.

Dimitar
Telerik team
 answered on 20 Mar 2018
1 answer
97 views

Hi,

      We are developing a desktop application in c# using telerik controls . We are using RAD PDF VIEWER  to load a fillable PDF form that is created in adobe acrobat.The tab key do not obey the tab order in the PDF. Instead, the control goes to the buttons outside the RAD PDF VIEWER. Can you help me to find a solution for this tab issue.

Regards,

Ernet Sancey

Dimitar
Telerik team
 answered on 20 Mar 2018
3 answers
83 views
Hello there,

I have a rotator which rotates different web browser controls. I would like to play a video inside some of the browsers using the HTML5 <video> tag. The problem is that I need to rotate to the next control only when the video has finished playing. Is it possible to set different intervals for each of the rotator's children? If not then is there an event I can handle which occurs when the rotator starts rotating it's content?

Kind Regards.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Mar 2018
11 answers
1.4K+ views
Hi,

For sometime, we are facing error code as below during app loading

Bounds cannot be changed while locked.(Telerik.WinControls)


            ' Place docking Pane
39:         _LeftDock = New _PaneLeft()


But, if we kill the application and restart, then the issue won't be appear...

Please advice.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Mar 2018
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
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?