Telerik Forums
UI for WinForms Forum
2 answers
672 views

Hello,

The gray background of the progress bar seems to be theme specific, is it possible to change it to white/transparent without a custom theme?

 

Attaching a screen shot to indicate the background fill in question.

Marija
Top achievements
Rank 1
 answered on 23 Oct 2020
1 answer
133 views

Hi,

I have multiple rows. Each row has a different currency. How to find sum in Indian currency using summary row.

please find attached.

waiting for your favorable response. 

Thanks.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Oct 2020
1 answer
136 views

Hello Telerik Support Team,

I'm trying to add a custom button for the RadImageEditor for my application. When I try to do so using

RadMenuItem cst = new RadMenuItem("Item");

radImageEditor1.ImageEditorElement.CommandsElement.CommandsStackEleemnt.Children.Add(cst);

This does get me the button I need, but I am unable to extend add an event handler to this button.

However If I were to create a button and add it to the element by extending RadMenuItem to override the onclick event within a custom class like so:

CustomMenuItem custom = new CustomMenuItem("CustomMenuItem");

radImageEditor1.ImageEditorEleemnt.CommandsElement.CommandsStackElement.Children.Add(custom);

This will get me a flat generic box the form in which I am unable to modify the style of the button to fit with the rest of the form, however this approach will allow me to define my event handler. 

How can I go about it to create a proper button within the image editor side bar (to clarify the side bar below the command elements, and be able to setup the onclick to run the function needed as intended?

Thanks,

Nadya | Tech Support Engineer
Telerik team
 answered on 22 Oct 2020
1 answer
93 views
Hi guys there is an issue with LESS Fiori Theme on the Last release of Kendo UI Scheduler. Please see attached view.
Dimitar
Telerik team
 answered on 22 Oct 2020
4 answers
184 views

Hello :)

 

Currently the SelectionMiniToolBar appears very transparent with its opacity increasing as the user moves the mouse over it - my problem is the RTF control has a white background and this menu has a white background with no border so visually it looks like it bleeds onto the page - its not of course, it's floating above it but i'd like to add a BORDER to the Mini Tool Bar so it's more recognizable.

 

So now i'm looking for where the SelectionMiniToolBar is referenced and that has me stumped.   rtfControl.SelectionMiniToolBar isn't correct (I sort of knew that going in but it's where i started) so my question is this:  How do I add a border to the existing SelectionMiniToolBar or do i have to build my own completely separate menu in order to do this?

 

Kindest regards, 

Curtis

 

Curtis
Top achievements
Rank 1
Iron
Iron
Veteran
 answered on 21 Oct 2020
2 answers
182 views
How does one go about reordering pages when in backstage view mode?
Nadya | Tech Support Engineer
Telerik team
 answered on 21 Oct 2020
1 answer
143 views

Hello,
Ive added a RadButtonElement to my RadForm's TitleBar using the below mentioned code:


Public Class RadForm1
Dim b1 As New RadButtonElement
Sub RadForm_Load(...) Handles RadForm.Load
FormElement.TitleBar.SystemButtons.Children.Insert(0, b1)
End Sub
End Class


Now what I want to achieve is when I click on b1 a small form (RadForm2) should be displayed just below b1. For that I tried to get the location of b1 so that I can use the b1's location value to set the location of RadForm2. But the location value of b1 returns 0,0.
So maybe I can't achieve what I want using the ButtonElement's location value as it seams the location value of any button element on the TitleBar is always 0,0.
So is there anyway I can get RadForm2 to be displayed just below b1?


Nadya | Tech Support Engineer
Telerik team
 answered on 21 Oct 2020
4 answers
479 views

Hi,

 

I need to change the default edit format of a DateTime field in the RadPropertyGrid.

Currently, the mask is presented as "Saturday, September 19, 2020", but I want it to be "19/09/2020" (day / month / year)

 

Best regards,


Nadya | Tech Support Engineer
Telerik team
 answered on 21 Oct 2020
1 answer
142 views

Hi all,

when i delete an appoinment i my winform application the resources of this appointment is not been deleted-

here is my code block is use, copied from an telerik example

Private Sub UpdSchedulerData(ByVal sender As Object, ByVal e As EventArgs) Handles RadScheduler1.AppointmentChanged
       AppointmentsResourcesTableAdapter.Adapter.AcceptChangesDuringUpdate = False
       Dim deletedRelationRecords As SchedulerDataDataSet.AppointmentsResourcesDataTable = TryCast(Me.SchedulerDataDataSet.AppointmentsResources.GetChanges(DataRowState.Deleted), SchedulerDataDataSet.AppointmentsResourcesDataTable)
       Dim newRelationRecords As SchedulerDataDataSet.AppointmentsResourcesDataTable = TryCast(Me.SchedulerDataDataSet.AppointmentsResources.GetChanges(DataRowState.Added), SchedulerDataDataSet.AppointmentsResourcesDataTable)
       Dim modifiedRelationRecords As SchedulerDataDataSet.AppointmentsResourcesDataTable = TryCast(Me.SchedulerDataDataSet.AppointmentsResources.GetChanges(DataRowState.Modified), SchedulerDataDataSet.AppointmentsResourcesDataTable)
       Dim newAppointmentRecords As SchedulerDataDataSet.AppointmentsDataTable = TryCast(Me.SchedulerDataDataSet.Appointments.GetChanges(DataRowState.Added), SchedulerDataDataSet.AppointmentsDataTable)
       Dim deletedAppointmentRecords As SchedulerDataDataSet.AppointmentsDataTable = TryCast(Me.SchedulerDataDataSet.Appointments.GetChanges(DataRowState.Deleted), SchedulerDataDataSet.AppointmentsDataTable)
       Dim modifiedAppointmentRecords As SchedulerDataDataSet.AppointmentsDataTable = TryCast(Me.SchedulerDataDataSet.Appointments.GetChanges(DataRowState.Modified), SchedulerDataDataSet.AppointmentsDataTable)
       Try
           If newAppointmentRecords IsNot Nothing Then
               Dim newAppointmentIds As New Dictionary(Of Integer, Integer)()
               Dim oldAppointmentIds As New Dictionary(Of Object, Integer)()
               For i As Integer = 0 To newAppointmentRecords.Count - 1
                   oldAppointmentIds.Add(newAppointmentRecords(i), newAppointmentRecords(i).ID)
               Next
               AppointmentsTableAdapter.Update(newAppointmentRecords)
               For i As Integer = 0 To newAppointmentRecords.Count - 1
                   newAppointmentIds.Add(oldAppointmentIds(newAppointmentRecords(i)), newAppointmentRecords(i).ID)
               Next
               If newRelationRecords IsNot Nothing Then
                   For i As Integer = 0 To newRelationRecords.Count - 1
                       newRelationRecords(i).AppointmentID = newAppointmentIds(newRelationRecords(i).AppointmentID)
                   Next
               End If
           End If
           If deletedRelationRecords IsNot Nothing Then
               AppointmentsResourcesTableAdapter.Update(deletedRelationRecords)
           End If
           If deletedAppointmentRecords IsNot Nothing Then
               AppointmentsTableAdapter.Update(deletedAppointmentRecords)
           End If
           If modifiedAppointmentRecords IsNot Nothing Then
               AppointmentsTableAdapter.Update(modifiedAppointmentRecords)
           End If
           If newRelationRecords IsNot Nothing Then
               AppointmentsResourcesTableAdapter.Update(newRelationRecords)
           End If
           If modifiedRelationRecords IsNot Nothing Then
               AppointmentsResourcesTableAdapter.Update(modifiedRelationRecords)
           End If
           Me.SchedulerDataDataSet.AcceptChanges()
       Catch ex As Exception
           MessageBox.Show(String.Format("An error occurred during the update process:" & vbLf & "{0}", ex.Message))
       Finally
           If deletedRelationRecords IsNot Nothing Then
               deletedRelationRecords.Dispose()
           End If
           If newRelationRecords IsNot Nothing Then
               newRelationRecords.Dispose()
           End If
           If modifiedRelationRecords IsNot Nothing Then
               modifiedRelationRecords.Dispose()
           End If
       End Try
   End Sub

 

when i move an appointment between resources and deleting in ran into an parallel exception in delete command.

any suggestions around what might the cause?

Kind regards

Martin


Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Oct 2020
1 answer
227 views

Hello, i have a Line Chart that needed to do some formatting.What i want is to change the thickness of Grid Dot Size and add a little margin / padding on first Chart Value.  Please see attachment to see the details.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Oct 2020
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
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
ShapedForm
SyntaxEditor
Wizard
CollapsiblePanel
TextBoxControl
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
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?