Telerik Forums
UI for WinForms Forum
1 answer
109 views
What is the best way to plot dates on a linear time-line? -e.g. Say I have 2 data points on Monday, none on Tues/Wed, and 3 on Thurs; I want the chart to group these in a way that's easy to see the dispersion of data over the week - now it just shows 5 evenly spaced points.
I could just add data; except my resolution is 1 second and the timescale could be months...
Dwight
Telerik team
 answered on 04 Jun 2010
1 answer
114 views

Hallo.

Please, could you give me an adwace how to use RadWaitingBarElement in RadGridView and run this element. I have try used it in cell_formating, but element do not run.

(it is trial Version: 2010.1 504 , C#, vs 2008 )

Thank you for advice or source code.

Tomas

void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)      
{      
if (e.CellElement.RowIndex < 0) return;      
if (((GridViewDataColumn)e.CellElement.ColumnInfo).FieldName == "test")      
{      
RadWaitingBarElement element = new RadWaitingBarElement();      
element.StretchHorizontally = true;      
element.StretchVertically = true;      
element.waitingTimer = this.timer1;//timer is running      
e.CellElement.Children.Add(element);      
}     
   
 

 

Nikolay
Telerik team
 answered on 04 Jun 2010
1 answer
334 views
I'm sure this must be simple, but I can't figure out how to do it.

When I resize a raddock with a toolwindow on the side, the toolwindow resizes proportionately along with the whole dock. I want to keep the toolwindow on the side the same size always, and allow the "slack" to be taken up by the other toolwindows.

I can't seem to find a MaximumSize property for the Toolwindow.

How do I do this?
Nikolay
Telerik team
 answered on 03 Jun 2010
2 answers
190 views

I am experiencing some issues with allowing the user to filter data in the grid. We are using Telerik.WinControls.GridView, v8.2.0.0. In the designer, i have the following code:

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn1);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn2);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn3);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn4);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn5);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn6);

 

 

this.grdAuditDetails.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn7);

 

 

this.grdAuditDetails.EnableFiltering = true;

 

 

this.grdAuditDetails.MasterGridViewTemplate.EnableFiltering = true;

 

 

this.grdAuditDetails.MasterGridViewTemplate.EnableGrouping = false;

 

 

this.grdAuditDetails.MultiSelect = false;

 

 

this.grdAuditDetails.Name = "grdAuditDetails";

 

 

this.grdAuditDetails.ReadOnly = true;

 

 

this.grdAuditDetails.RightToLeft = System.Windows.Forms.RightToLeft.No;

 

 

//

 

 

//

 

 

//

 

 

this.grdAuditDetails.RootElement.ForeColor = System.Drawing.SystemColors.GradientActiveCaption;

 

 

this.grdAuditDetails.ShowGroupPanel = false;

 

 

this.grdAuditDetails.Size = new System.Drawing.Size(791, 590);

 

 

this.grdAuditDetails.TabIndex = 94;

 

 

this.grdAuditDetails.TabStop = false;

 

 

this.grdAuditDetails.Text = "radGridViewPreview";

 

 

this.grdAuditDetails.ThemeName = "Breeze";

 

((Telerik.WinControls.UI.

GridTableElement)(this.grdAuditDetails.GetChildAt(0))).CellSpacing = -1;

 

((Telerik.WinControls.UI.

GridTableElement)(this.grdAuditDetails.GetChildAt(0))).TableHeaderHeight = 26;

 

((Telerik.WinControls.UI.

GridTableElement)(this.grdAuditDetails.GetChildAt(0))).BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(246)))));

 

((Telerik.WinControls.UI.

GridTableElement)(this.grdAuditDetails.GetChildAt(0))).Padding = new System.Windows.Forms.Padding(3);

 

 

On the form, i can see the filter icons for the fields, but when the user speicifies how they want to filter and add their criteria, nothing happens. Can anyone please help me out with this issue?

Thanks!

Craig

Craig
Top achievements
Rank 1
 answered on 03 Jun 2010
1 answer
108 views

Hi,

        How to do i customize the back color of a particular Date in Day View or Weekly View by code.

Regards

Nitin

Dobry Zranchev
Telerik team
 answered on 03 Jun 2010
3 answers
161 views
Hello,

i have created a radComboBox style but for some reason the ListBoxElement doesn't take the style although it appears in the Style Builder.

Thank you
Victor
Telerik team
 answered on 03 Jun 2010
1 answer
122 views
Hi All

I'm using a Multicolumn combobox and have set AutoCompleteMode set to SuggestAppend.

However when typing in the combo nothing happens.
Is there a bug or have I neglected to set  a required property?

Also there seems to be a quirk with AutoFilter mode.
The problem with this is that after it has located an item (list still dropped down) the cursor goes back to the start of the text in the text box element. This effectively stops you searching for items with long search criteria.


Thanks in advance
Deyan
Telerik team
 answered on 03 Jun 2010
2 answers
558 views

I use your RadGridView with some GridViewMaskBoxColumn. The GridViewMaskBoxColumn is in masktype numeric with mask=f3.
I want to use the cells keypress event so if i press comma then the cursor jumps after the comma. But i cant find any keypress event for cells, any idea how could i make that work?
Alexander
Telerik team
 answered on 03 Jun 2010
3 answers
194 views
Pls give me an idea or sample scripts for create a alert window in the windows form, very tks.
Deyan
Telerik team
 answered on 03 Jun 2010
1 answer
126 views
Hi,

I have a form with a tree and a button on it. The tree is loaded with items in English. If the button is pressed the tree should be filled in German with all the current expands and selected items so the user would just see it as a flicker, a translation of the words... The expaned tree items and positionings would stay. 
  
Is that possible?

Karl 
Victor
Telerik team
 answered on 03 Jun 2010
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
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?