Telerik Forums
UI for WinForms Forum
8 answers
502 views

Hello

I have a Command bar with one row and three StripElements
Depending on some condition I wish to programmatically set the second strip element to visible or collapsed.
When I change the visibility property of the second strip element from Visible to Collapsed it is no longer visible but the third strip element does not move against the first strip, an empty space remains between the first end the third strip.

Also I have set the grip and overflow visibility to collapsed on all three strip elements.

How can I "force" the collapsing to occur ?

Thanks in advance

PJ

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 11 Nov 2019
4 answers
481 views

Hi,

My issue is when I try to export the RadGridView data to excel I cant compile.

Language : VB.net

Using this code snippet

getting error on this line

Dim renderer As New Telerik.WinControls.Export.SpreadExportRenderer()

 

image attached for better understanding.

can anyone tell me what I am doing wrong?

isn't  SpreadExportRenderer member of Telerik.WinControls.Export ?

 

Nadya | Tech Support Engineer
Telerik team
 answered on 11 Nov 2019
1 answer
172 views

Hi,

How do I make this part(marked in the picture) of the child table it's linked to invisible ?

Dimitar
Telerik team
 answered on 08 Nov 2019
1 answer
842 views

Hi,

I want to add commandbutton to each radgridview row, and I want to know how to define each row's button click event ?

For example, If I click on button of row 3, the button shows a string in the cell instead and if clicked back again, the button hides string and shows itself.

I use vb.net

 

Thanks

Nadya | Tech Support Engineer
Telerik team
 answered on 08 Nov 2019
2 answers
195 views

Hello Telerik Team , Good time

 When I use radSpreadsheet  or  radSpreadsheetRibbonBar , font and size Change  at runtime

The relevant photo was attached.

thanks a lot

mali
Top achievements
Rank 1
 answered on 08 Nov 2019
5 answers
177 views

How can I change the right edge of a node in the MouseEnter event, change border width and color

Thanks for your help

Faustino
Top achievements
Rank 1
 answered on 06 Nov 2019
1 answer
487 views

Hello,

We are working with 2019 Q2.

When the grid is refreshed (grid.MasterTemplate:Refresh() or bound to a new datasource), a new GridSearchCellElement is created (CreateCell event is fired) and the search text is cleared.

Is it possible to change this behaviour and don't touch the the GridSearchCellElement - object?

Currently I set the searchtext again, but this is not really an option for us.

We bypassed the default search and have implemented a new logic. After search is completed a refresh or rebind is done. This works fine, but problem starts when the user keeps typing while the search is executed. In this scenario some letters are lost (we are working with Progress - so it is a single threaded environment).

I hope you can help us with this.

Regards,
Martin

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 06 Nov 2019
8 answers
650 views
Dear Sir/Madam,

In My GridView, there's a GridViewComboBox. The problem I'm facing now is when I use mouse wheel to scroll the combobox via the dropdown list inside the combobox, my system crashes, but if I use the vertical scroll bar, the system is fine. Therefore I would like to disable the mouse wheel in the combobox.

Could you give me some instructions?

Thanks & Regards,

David
Nadya | Tech Support Engineer
Telerik team
 answered on 05 Nov 2019
5 answers
730 views

Hello,

I have the same issue like this post:

https://www.telerik.com/forums/rad-grid-view-position-after-reload-of-the-data

 

The TableElement.VScrollBar.Value is saved/restored well in the gridview. But the vScroll.Maximum is changed dynamically depending upon the 

In order to reproduce the issue, I've modified the telerik's approach, please download the demo in the link:

https://www.dropbox.com/s/gyypdzzvjvmck08/gridscollrefresh.rar?dl=0

In the demo, the gridview is refreshing every second by a backgroundworker and a timer. When all hierarchcal grid are collapsed, the scroll position is saved/restored well because vScroll.Maximum stays the same.

But If you click the button "Expand all", and then scroll, the scrolling bar or the gridview will jump a little bit, because the vScroll.Maximum is changing. That means the VScrollBar.Value/vScroll.Maximum ratio is changing when I restore the old VScrollBar.Value.

 

Regards,

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 05 Nov 2019
3 answers
486 views

Hello,
I need to load appointment data and resources using datatable, Here I leave the code, the resources are loading, but the appointments are not loading, they help me that I am doing wrong..

      SqlDataAdapter da = new SqlDataAdapter("Select ID, Summary, Start, End, RecurrenceRule,Location,Description, BackgroundId, StatusId From Appointments", DConexion.CnConexion);
            DataTable dtAppointments = new DataTable();
            da.Fill(dtAppointments);

            SqlDataAdapter da1 = new SqlDataAdapter("SELECT IdPerson, Name,  FROM Persons", DConexion.CnConexion);
            DataTable dtResources = new DataTable();
            da1.Fill(dtResources);

            SchedulerBindingDataSource source = new SchedulerBindingDataSource();

            AppointmentMappingInfo appointmentMappingInfo1 = new AppointmentMappingInfo();
            appointmentMappingInfo1.BackgroundId = "BackgroundId";
            appointmentMappingInfo1.Description = "Description";
            appointmentMappingInfo1.End = "End";
            appointmentMappingInfo1.Location = "Location";
            appointmentMappingInfo1.RecurrenceRule = "RecurrenceRule";
            appointmentMappingInfo1.ResourceId = "ResourceID";
            appointmentMappingInfo1.Start = "Start";
            appointmentMappingInfo1.StatusId = "StatusId";
            appointmentMappingInfo1.Summary = "Summary";
            appointmentMappingInfo1.UniqueId = "ID";
            source.EventProvider.Mapping = appointmentMappingInfo1;

            ResourceMappingInfo resourceMappingInfo1 = new ResourceMappingInfo();
            resourceMappingInfo1.Id = "IdPerson";
            resourceMappingInfo1.Name = "Name";
            source.ResourceProvider.Mapping = resourceMappingInfo1;

            source.EventProvider.DataSource = dtAppointments;
            source.ResourceProvider.DataSource = dtResources;

            this.radSchedulerCitas.DataSource = source;

 

I think I need to relate to the other AppointmentsResources table, if that's how I do it

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 05 Nov 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
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?