Telerik Forums
UI for WinForms Forum
3 answers
548 views
When we used to install Telerik manually the toolbox in Visual Studio would be filled with the newest controls.  Using the Telerik online nuget packages however don't do the same.  How do I get the toolbox to be filled after referencing Telerik via the use of a nuget package?
Dyanko
Telerik team
 answered on 31 Jul 2018
2 answers
146 views

Hi, 

I posted a question regarding chat control, I received an answer but I can't find the thread.

URL:

https://www.telerik.com/forums/how-to-allow-multi-line-in-the-input-textbox

 

Thanks

Sameh
Top achievements
Rank 1
 answered on 31 Jul 2018
2 answers
79 views

Hello, 

There is some way to do this (captura.png)?

GanttViewTextViewElement over GanttViewGrapicalViewElement

Thank you!

Miguel
Top achievements
Rank 1
 answered on 31 Jul 2018
6 answers
271 views

Hi all- 

I'm using a RadGridview (Telerik Winforms version 2018.1.220.40) and am having trouble getting the excel filter grid to look right.   The radGridView seems to default to Seguoi 8.5 font, but I increased that to 14 to make it readable.   The problem I'm having is that, after I enable Excel filtering, when a user chooses to filter, the excel filter box is tiny (I think it's still 8.5 font) - all the checkboxes are tiny, and the titles are unreadable.  

I've searched the forums and found some related posts that instruct in (c#) to run through the elements in the viewCellEditing event, but, either I haven't translated them right into VB, or they aren't doing what I expected.   

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2018
2 answers
106 views

We are using the Excel like filtering feature. Upon startup I would like to set specific entries in a column as attached. How can I do this?

 

Terry
Top achievements
Rank 1
 answered on 31 Jul 2018
1 answer
122 views

Hi,

The scenario is following

The system has 2 different windows (type floating.).

Say user is doing something like editing in a first window.

I want programatically to restrict user to the window he is currently working in, until he commits his work.

I.e. prevent him to go to window #2 until he clicks save - so it should work as a modal dialog box while user in editing mode.

I tried to hook up to ActiveWindowChanging event of RadDock class. 

I wrote essentially 

private void DockerContainer_ActiveWindowChanging(object sender, DockWindowCancelEventArgs e)
{
            // some processng
           if (needTo capture)
           {
                e.Cancel = true;
            }
}

But it doesn't work.

Are there any way to do what i want to do?

Please help,

Boris Pitel

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

Hello folks!

Is there some way to adjust the width of the textbox in the TableSearchRow?  Also, can a MaxLength be set for this same textbox?

-Curtis

Dimitar
Telerik team
 answered on 30 Jul 2018
5 answers
440 views

Sample code below. Just copy, paste and run. :)

var grid = new RadGridView
{
    Dock = DockStyle.Fill,
    AutoSizeRows = false,
    AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill
     
};
 
grid.Columns.Add(new GridViewTextBoxColumn() { Name = "column1", HeaderText = "Column 1" });
grid.Columns.Add(new GridViewTextBoxColumn() { Name = "column2", HeaderText = "Column 2" });
grid.Columns.Add(new GridViewTextBoxColumn() { Name = "column3", HeaderText = "Column 3" });
grid.Columns.Add(new GridViewTextBoxColumn() { Name = "column4", HeaderText = "Column 4" });
 
var columnGroupsView = new ColumnGroupsViewDefinition();
columnGroupsView.ColumnGroups.Add(new GridViewColumnGroup("Group 1 Line 1" + Environment.NewLine + "Group 1 Line 2"));
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows.Add(new GridViewColumnGroupRow());
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows[0].ColumnNames.Add("column1");
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows[0].ColumnNames.Add("column2");
 
columnGroupsView.ColumnGroups.Add(new GridViewColumnGroup("Group 2 Line 1" + Environment.NewLine + "Group 2 Line 2"));
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows.Add(new GridViewColumnGroupRow());
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows[0].ColumnNames.Add("column3");
columnGroupsView.ColumnGroups[columnGroupsView.ColumnGroups.Count - 1].Rows[0].ColumnNames.Add("column4");
 
grid.ViewDefinition = columnGroupsView;
 
var form = new RadForm();
form.Controls.Add(grid);
form.ShowDialog();

 

How to change by code height of group row? Please see attached image.

Important: I want to stay with AutoSizeRows = false.

konrad
Top achievements
Rank 1
 answered on 30 Jul 2018
11 answers
247 views

It looks like the stand text block formatting is done on word boundary, i.e. text delimited by spaces. Is there any way to make a custom block so I can format based on words delimited by other characters, e.g. "|", "[", "]" etc. Also, what is the extent of customisation, is it just fore/back colour of text? I'd like bold, italics etc. also so perhaps my best option is to use a rich text editor.

Dimitar
Telerik team
 answered on 27 Jul 2018
3 answers
228 views

I'm having a very strange issue.  When I click "open property builder" I am presented with an error message.  It says...

Could not load file or assembly 'Telerik.WinControls.Themes.HighContrastBlack, Version ...' or one of its dependencies.  The system cannot find the file specified.

What's most interesting is that I am not using or referencing this theme anywhere in my project.

Dimitar
Telerik team
 answered on 26 Jul 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)
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
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
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
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
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
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?