Telerik Forums
UI for WinForms Forum
2 answers
70 views

why the background-color remains the same although another line was selected.
this only applies if foreColor is changed.

                    if (Convert.ToDateTime(cell.Value.ToString()) != Convert.ToDateTime(e.Row.Cells[ColumnTitle.GridOperation.Liefertermin].Value.ToString())) {
                        cell.NumberOfColors = 1;
                        cell.DrawFill = true;
                        cell.ForeColor = ColorDeltaLieferterminAbteilungstermin.FColor;
                        cell.Font = new Font(DefaultFont, FontStyle.Bold);
                    } else {
                        cell.Image = null;
                        cell.DrawFill = false;
                        cell.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local);
                        cell.ResetValue(LightVisualElement.ForeColorProperty, ValueResetFlags.Local);
                        cell.ResetValue(LightVisualElement.NumberOfColorsProperty, ValueResetFlags.Local);
                        cell.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local);
                    }

thanks andre

Andre
Top achievements
Rank 1
 answered on 18 Dec 2018
2 answers
72 views

I've done some searching but was unable to find anything to help my specific case. I am using an AutoCompleteEditor class to enable drop down textboxes on my grid view, but I want to limit the token to 1 min and max. How can I do this? You may ask why I am using this instead of a ComboBoxColumn. The answer is: I have been instructed to not show any drop down arrows. 

Here is the class that I've taken from forums:

  class AutoCompleteEditor : RadTextBoxControlEditor
    {
        protected override Telerik.WinControls.RadElement CreateEditorElement()
        {
            return new RadAutoCompleteBoxElement();
        }

        public override void OnKeyDown(System.Windows.Forms.KeyEventArgs e)
        {
            RadAutoCompleteBoxElement element = this.EditorElement as RadAutoCompleteBoxElement;

            if (element.IsAutoCompleteDropDownOpen)
            {
                return;
            }

            base.OnKeyDown(e);
        }
    }

 

I am trying to validate data entered into the cell, but it looks like end users are able to select multiple values. I want to completely disable this ability and allow only a single value to be selected.

It would be much simpler to use a regular ComboBoxColumn, but I am unable to convince decision makers other wise.


Mimi
Top achievements
Rank 1
 answered on 18 Dec 2018
3 answers
308 views
Hi.

An exception is thrown when I reset my data source (first to null to clear it), but I dont know when it really happens. It happens very seldom but it does happen.

Object reference not set to an instance of an object.
   at Telerik.WinControls.UI.TableViewDefinitionBase.GetRowHeight(GridViewRowInfo rowInfo, IGridView gridView)
   at Telerik.WinControls.UI.GridTableBodyElement.GetRowHeight(GridRowElement row, Single y, SizeF availableSize)
   at Telerik.WinControls.UI.GridTableBodyElement.ArrangeOverride(SizeF finalSize)
   at Telerik.WinControls.RadElement.ArrangeCore(RectangleF finalRect)
   at Telerik.WinControls.RadElement.Arrange(RectangleF finalRect)
   at Telerik.WinControls.Layouts.ContextLayoutManager.UpdateLayout()
   at Telerik.WinControls.Layouts.ContextLayoutManager.UpdateLayoutCallback(ILayoutManager manager)

Thanks,
-j
Dimitar
Telerik team
 answered on 18 Dec 2018
3 answers
453 views

Hello everyone,

I've built an application using winforms (c++) and Telerik and when i run it from the computer i made it on, it works with no problems. However once i copy it over to my laptop, the .exe file simply won't run. No error messages, it just doesn't open. I have tried it on another computer and got the exact same problem.

I followed the guide here: https://docs.telerik.com/devtools/winforms/deployment-and-distribution/application-deployment

All the .dll files are in the same folder as the .exe and yet it still does not work. Has anyone had this problem before and would they be able to help me fix this please?

Thank you!

Dimitar
Telerik team
 answered on 17 Dec 2018
3 answers
87 views

     I have a control RadMultiColumn Control on my form as you can see here its showing Telerik.WinControls.UI.GridViewDataRowInfo in the text box however when selecting the option it then throws a null statement.

            dpStockSelection.DataSource = _sageManager.ProductFetchAll();            

public List<Product> ProductFetchAll()
      {
 
          if (!IsConnected)
              throw new Exception("Not connected to Sage");
 
          List<Product> products = new List<Product>();
          SageDataObject230.IStockRecord sageStockRecord = (SageDataObject230.IStockRecord)_workSpace.CreateObject("StockRecord");
 
          try
          {
              if (sageStockRecord.MoveFirst())
              {
                  do
                  {
                      products.Add(CreateProduct(sageStockRecord));
 
                  } while (sageStockRecord.MoveNext());
              }
          }
          finally
          {
              sageStockRecord = null;
          }
 
          return products;
      }
David
Top achievements
Rank 1
 answered on 17 Dec 2018
0 answers
94 views

I am using Q1 2008 Winforms.

There is radgridview named 'gv'. gv is filling with some manipulated data. I can filter by clicking and selecting some values. I want to filter wiht my own buttons. Basicially i created filter like this:(c#)

01.private void btFilter3_Click(object sender, EventArgs e)
02.{
03.    gridTest.EnableFiltering = true;
04.    this.gridTest.FilterDescriptors.Remove("IssueDate");
05.    FilterDescriptor filter = new FilterDescriptor();
06.    filter.PropertyName = "IssueDate";
07.    filter.Operator = FilterOperator.IsGreaterThan;
08.    filter.Value = DateTime.Now.AddMonths(-5);        
09.    filter.IsFilterEditor = true;
10.    this.gridTest.FilterDescriptors.Add(filter);
11.}

 

By clicking the button code is running. On Screen; the date value  (what i described above) is appearing on filter area. But data on the gv isn't filtering.

When i filter with another value(date) manually, gv is filtering. After that manually process when run code by clicking the button, code is running and data on the gv is filtering also.

I need filter without manually process. 

What am i missing?

 

Erdem
Top achievements
Rank 1
 asked on 14 Dec 2018
2 answers
739 views
Hi, we used to use Telerik version 2012. Sometimes we needed to have wider scrollbar on dropdownlist for example on touchscreens. Now in Telerik 2018 when we change scroll width in windows regedit all applications change their scroll width except this one with Telerik. How can we change scroll width now?
Sandra
Top achievements
Rank 1
 answered on 14 Dec 2018
7 answers
354 views

Hi everyone,

when a radmessagebox pops up , its not exactly on the center of screen .

How to align it to the center of screen?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 14 Dec 2018
5 answers
156 views

I want to give each of my grids a custom GroupingPanelDefaultMessage based on which column(s) is/are groupable.  For example,

"To show sales grouped by Division, drag that column-header here".

I hope it is not necessary to create a custom LocalizationProvider for each such customization. Is it? If so, the following doc doesn't provide enough info:

http://www.telerik.com/help/winforms/gridview-localization.html

I don't see an object called RadGridLocalizationProvider anywhere. 
Is the RadGridLocalizationProvider an  object encapsulated by the grid?


Thanks

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 14 Dec 2018
3 answers
794 views
hi,

How can i move the spliiter programmatically? what i like to do is to mimic the behavior of the splitter in your examples. I intend to add a button to the panel and change the position of the splitter. I have tried to use the collapse property,  but it also hides the button. therefore i need to change the splitter position my self and leave a little space for the toggle button.

I have also tried to use the prev and next buttons on the splitter, by they are hidden as well when the panel is collapsed.

Thanks,

Sharon.
Hristo
Telerik team
 answered on 14 Dec 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
ComboBox and ListBox (obsolete as of Q2 2010)
ListView
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
Menu
PropertyGrid
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
ProgressBar
CheckedDropDownList
Rotator
TrackBar
MessageBox
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ScrollBar
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
ColorBox
Callout
FilterView
PictureBox
VirtualKeyboard
NavigationView
Accessibility
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
Flyout
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
DateOnlyPicker
TimeOnlyPicker
+? more
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
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?