Telerik Forums
UI for WinForms Forum
2 answers
112 views

Having complains from users when typing in a date for a GridViewDateTimeColumn

On the RadDateTimePicker there is an option called AutoSelectNextPart  (see code below)

Can this be used with the gridview, GridViewDateTimeColumn?

Many Thanks

 

Dim provider As MaskDateTimeProvider = TryCast(Me.dtpContractSigned.DateTimePickerElement.TextBoxElement.Provider, MaskDateTimeProvider)
provider.AutoSelectNextPart = True

Mark
Top achievements
Rank 1
 answered on 06 Oct 2015
3 answers
219 views

Hi,

The Release Notes of 2015Q3 state that the drawing performance has improved for large trees. In my application I find that the redraw performance is substantially worse in this release than it was in earlier releases. Especially closing/opening nodes that are already loaded into memory (via NodesNeeded / Lazy loading) seem to perform worse than before. What's your experience with Tree Loading performance in 2015Q3?

Regards

Erwin

erwin
Top achievements
Rank 1
Veteran
Iron
 answered on 05 Oct 2015
2 answers
127 views
Now that I have the ColumnGrouping working correctly, I've moved on to adding print support to my grid.  I have only implemented a call to PrintPreview() and my resulting print is missing the first column from my table.  The attached screen print shows both the source grid and print preview version.  Could this be related to having the first ColumnGroup marked with IsPinned=true?
Pete
Top achievements
Rank 1
 answered on 05 Oct 2015
2 answers
313 views

I'm sure i'm missing something simple but the solution eludes me - i'm trying to use a RadContextMenu instead of the standard Windows.Forms.ContextMenu but receive the following error:

 

'Telerik.WinControls.UI.RadContextMenu' cannot be converted to 'System.Windows.Forms.ContextMenu'.

 

Any help or suggestions would be very much appreciated!

-Curtis

 

Hristo
Telerik team
 answered on 05 Oct 2015
4 answers
283 views

I've created a GridViewComboBoxColumn and now I need to get the combobox's dropdownclosed event. Or possibly it's selectedvalue changed event. How do I create the handlers for those. In VB code please.

 

Later

Art

Dimitar
Telerik team
 answered on 05 Oct 2015
5 answers
133 views

Hey,

is there a way to display row / group numbers?

Let's say i have three RowGroupDescriptions, i want to start numbering each top level group.

Cheers,

Jens

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 05 Oct 2015
3 answers
104 views

Hey,

the data i'm aggregating contains a string value (eg. country) for each item.

I want to display the string value in the PivotGrid as followed:

There should be a column "Country" and the grouped items should display an empty string (since i see no good way to aggregate strings except maybe concatenating). When i open up the groups and drill down to a specific item, the "Country" column should display the country value for the item.

Is there any way to achive this?

Cheers,

Jens

Hristo
Telerik team
 answered on 02 Oct 2015
5 answers
157 views

Dear All 

Please Help me how to make from like example MDI Layout - Radribbonbar 

i mean step by step... with properties not coding  

i have follow this step...

i have change properties 

controlbox = false 

formborderstyle = fixedsingle 

text = null 

 ismdicontainer = true 

 

i still cannot get like mdi layout - ribbonbar example

 

thanks before

 

Hengky
Top achievements
Rank 1
Veteran
 answered on 02 Oct 2015
1 answer
74 views

Hi,

I am using a RadToggleButton and a RadDropDownButton in a RadRibbonBar.

The RadDropDownbutton does not have the "IsChecked" property. How do I get the same behavior â€‹than a RadToggleButton, meaning: If i click on the radDropDownButton i want it to have the same "visual behavior" as a normal RadTogglebutton;

I need it to change the backgroundcolor after a click like the togglebutton and to change it back if you click again.

 

thanks for any help

 

 

Hristo
Telerik team
 answered on 02 Oct 2015
5 answers
581 views

Hello,

Very new to Telerik Components.

 I am using Telerik Gridview with different column types like multicombobox, decimal, combo box etc., Now I need to do validation each cells and written code for validation in CellValidating event of Gridview. it is  validating  properly. but I need to clear the cell content which is not happening.

I red other articles regarding the same and i initialize a cell validating event in the editor (Multicombobox editor). in this case the event itself is not firing.

kindly help me sort this issue.

 I am attaching code snip shot for your ref.

Grid level Cell validation event

private void grddisplaygrid_CellValidating(object sender, CellValidatingEventArgs e)
        {
            e.Cancel = true;
            grddisplaygrid.CurrentRow.Cells[0].Value = string.Empty;
            }​

 

in editor level (keydown event is firing but the validaiting event is not firing

-----------------------

private void grddisplaygrid_CellEditorInitialized(object sender, GridViewCellEventArgs e)
        {
                if (this.grddisplaygrid.CurrentColumn is GridViewMultiComboBoxColumn)
                {
                    RadMultiColumnComboBoxElement editor = e.ActiveEditor as RadMultiColumnComboBoxElement;
                    if (editor != null)
                    {
                        iscellintialized = true;
                        editor.EditorControl.EnableFiltering = true;
                        editor.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
                        editor.ClearTextOnValidation = false;
                        editor.Text = "";
                        RadMultiColumnComboBoxElement editorElement = editor.EditorElement as RadMultiColumnComboBoxElement; //_gridEditor.EditorElement as RadItem;
                        editorElement.KeyDown += new KeyEventHandler(MultiComboboxeditor_KeyDown); //.KeyDown += new KeyEventHandler(radGridView1_KeyDown);
                        editorElement.Validating += new CancelEventHandler(editor_validaitng);
                        editorElement.Validated += new EventHandler(editor_validated);
                    }
                }
            }

        private void editor_validated(object sender, EventArgs e)
        {
            throw new NotImplementedException();
        }

        private void editor_validaitng(object sender, CancelEventArgs e)
        {
            //throw new NotImplementedException();
            
        }​

 

 

 

 

 

 

 

 

T S
Top achievements
Rank 1
 answered on 02 Oct 2015
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
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
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
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
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
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?