Telerik Forums
UI for WinForms Forum
2 answers
102 views

Morning,

In the designer I am trying to add a button to the right side of a group of 3 items already in the group.

I just can seem to figure out how to do this. Any help would be appreciated.

Attached 2 images. One Is what I have atm and the other is how I want it to appear.

 

Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
 answered on 02 Jul 2019
0 answers
104 views

Hi everyone.

Using a custom pin, I've plotted a passenger plane on the map, that by changing the coordinates of the passenger plane, the custom pin of the plane moving on the map.Next to it, I used polyline to draw a flight path. But I encountered problems.

1) I want to turn the plane icon in the direction of the flight path, but it is not.

2) or i want to draw lines of plane icon path with correct icon direction.

Thanks

Lost
Top achievements
Rank 1
 asked on 02 Jul 2019
3 answers
1.4K+ views

Hello,

Currently, if I add a GridViewDateTimeColumn into a RadGridView, I can only edit the date component and I don't have a TimePicker part, even though I choose a DateTimePicker component as EditorType property. I'm even not allowed to set the time by typing it.

I also tried to trigger it manually with the following code, without any success:

 

var startDateColumn = radGridView1.Columns["StartDate"] as GridViewDateTimeColumn;
var picker = startDateColumn?.GetDefaultEditor() as RadDateTimeEditor;
var editor = picker.EditorElement as RadDateTimeEditorElement;
editor .ShowTimePicker = true;

 

 

How can I enable both date & time editing on a GridViewDateTimeColumn?

 

Windows 10 - VS2017 - .NET Framework 4.6.1 - Telerik R1 2019 - Fluent theme


Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Jul 2019
5 answers
117 views

How can I select the Button(s) via Keyboard. Tab does not seem to work while inside the Textbox.

Regards

Erwin

Dimitar
Telerik team
 answered on 01 Jul 2019
3 answers
137 views

on visual studio 2019 and 2017 I created a new radribbonform and added a dropdownbutton inside it and added buttons to that dropdown button but when I click on the dropdown button to show the dropdown menu and it's buttons it doesn't open and when I go to items collection of the dropdown button to edit the property of each item it's dimmed

Dimitar
Telerik team
 answered on 28 Jun 2019
21 answers
831 views

Hi,

I'm trying to create a customised version of the appointment dialog, which will actually combine some of the functionality of both the EditRecurrence dialog and the EditAppointment dialog.

From the EditActivity dialog all I need is the start date and subject fields along with the save and cancel buttons, and then from EditRecurrence I want a checkbox to enable recurrence functionality, which will enable the recurrence pattern and range of recurrence groups of controls in the same dialog.

What would be the best way to implement this window? I've played around with inheriting EditRecurrenceDialog (partial class frmEditAppointment : EditRecurrenceDialog) but I can't seem to hide the controls I don't want. For example when I try to hide the All Day Event checkbox the "Visible" property is greyed out in the designer/properties window and I can't change it to false.

Given these issues I get the impression I'd be best off creating a new appointment dialog entirely, how should I go about doing this? Ideally I wouldn't want to have to recreate groups of controls like the recurrence pattern or range of recurrence and instead just add/copy them in somehow.

 

 Thanks for your help, Tom.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Jun 2019
8 answers
777 views

hello

i want change NumberDecimalSeparator  to grid example below:

120.459->120/459

moj
Top achievements
Rank 1
 answered on 25 Jun 2019
6 answers
169 views

Hi,

I'm having some trouble trying to insert my gridview data into a table using store procedure.

Here's the scenario:

I have a dataset1 with a query that selects about 20 columns from left outer joins 3 views (lets call them A, B, C views) and 1 table (D table). 

I created a gridview that fills the gridview that the dataset... of the 20 columns 3 are hidden.

On this D table, I have one column that the cells are empty.  This is where we need to enter the data during runtime.

I created a store procedure that will insert 5 columns from the dataset (3 of the hidden columns, 1 visible, and 1 column where we need to enter the value during runtime) using parameters

On my dataset1 configuration, I added a query that will execute the store procedure (lets call it InsertPIWidthTable, which is D table)

 

Problem:

I got my gridview to populate the data, but can't seem to get what I entered in the cell to store in my D Table.  It says there is no argument given that correspond to the required parameter, but I have all the parameter names correct... So I stuck. Help?

I attached screenshots of everything.  Thank you!

 

This is my code:

private void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e)
        {
            IEditableObject editableObject = e.Row.DataBoundItem as IEditableObject;
            if (editableObject != null)
            {
                editableObject.EndEdit();
            }
            DataRowView dataRowView = e.Row.DataBoundItem as DataRowView;
            if (dataRowView != null)
            {     

                   this.vW_ProdPrintPageTableAdapter.InsertPIWidthTable();
            }

Dimitar
Telerik team
 answered on 25 Jun 2019
1 answer
1.1K+ views

Regards!

I'm trying adjust an columns of my GridView, but I don't know why it not change.

I Want adjust the first column with AutoResize Fill, and de remain cells with BestFit:

                LoadGrid();
                InitializeTemplate();
                
                foreach (var Column in rgvHorasProveedores.MasterTemplate.Columns)
                {
                    if (Column.Name != "Equipo") //Distinct to first column
                    {
                        if(Column.AllowResize == true)
                        Column.AllowResize = false;
                    }
                }


                //rgvHorasProveedores.Templates[0].BestFitColumns();
                foreach (var Column in rgvHorasProveedores.Templates[0].Columns)
                {
                    if (Column.Name != "Equipo")
                    {
                        
                        Column.AllowResize = false;
                    }
                }
                rgvHorasProveedores.Templates[0].AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
                rgvHorasProveedores.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;

The level 2 (second template)it does not change and when reload thr grid, it lost the format.

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 25 Jun 2019
10 answers
849 views
This is the first time that I write, sorry my english. Well, the problem that I have is that I don't know how to the packages that I generate with the Visual Style builder, I know load them in *.xml format, but I would like to that as package. I tried all that I could find in Google or in the Telerik's tutorials, but nothing works for me, if you could explain the most possible I'll be glad you.
Johnson
Top achievements
Rank 1
 answered on 25 Jun 2019
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?