Telerik Forums
UI for WinForms Forum
1 answer
140 views

When I add a new RadForm to a project, the form class name has "_" & the language appended to the end, like this;

public partial class RadForm1_cs

Public Class RadForm1_vb

Is this Telerik adding "_cs" or "_vb" to the class name?  If so, can this feature be disabled without rolling back the control library version I am using? 

Thanks,

 
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Aug 2023
3 answers
120 views

Is there any way to invoke the 'Find replace' dialog from within code? I get that all of the methods which do the finding and replacing are available in the API, but I don't really want to re-implement your UI.

Associated question - is it possible to re-use individual menu items from within your RadSpreadsheetRibbonBar? So just copying your 'find' menu item?

Problem is that I only want otthe user to have the 'find' option under specific circumstances.

Thanks

Dinko | Tech Support Engineer
Telerik team
 answered on 01 Aug 2023
1 answer
97 views

I know how to sort column chooser for RadGridview:

e.ColumnChooser.SortOrder = RadSortOrder.Ascending

is there a way to sort Field Chooser for RadPivotGrid too?

Dinko | Tech Support Engineer
Telerik team
 answered on 01 Aug 2023
1 answer
129 views

I have a chart where data  on the X axis is Time based, and on the Y axis is speed based, what is the best way of being able to scale the Speed (Y Axis) to show different units eg kmh, mph, m/s.

Is there a Y axis data scaling property I could set?

Cheers

Toby

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Aug 2023
1 answer
417 views

Hai,
   How to add icon or image on right side of the raddropdowlist  ?
   I am dynamically added dropdowlist via code and i need to add icon on right side of the control  (inside the control) ,In textbox i can add, like this i want to add icon, here i attach screenshot.

Thanks and Regards
Aravind

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 01 Aug 2023
1 answer
1.0K+ views

Hi,
     I try to set tooltip for textbox which is disabled , it not showing tooltip, but if the textbox in enabled it showing, Is there any way to show tooltip while it disabled ?

I tried following ways , but not working
in 2nd way i added Windows ToolTip control in that form and set the value for radtexbox, but not working.


       RadTextBoxControl1.Enabled = False
       '1 st way
        RadTextBoxControl1.TextBoxElement.ToolTipText = "This is the tooltip text."
        '2 nd way
        ToolTip1.SetToolTip(RadTextBoxControl1, "This is the tooltip text.")


Pls reply asap
Regards
Aravind
Aravind
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 01 Aug 2023
1 answer
177 views

In my aplication I create a graph with lots of scatter line series. Once created I would like to alter the format of one specific item in the legend to show this in bold fold (or possibly highlight in a different colour).

How is this possible to achieve?

Dinko | Tech Support Engineer
Telerik team
 answered on 31 Jul 2023
1 answer
110 views

Hi ,
When we group by any column by default sorting is applied on that column. I don't need that sorting.

In Below Image You can see I just grouped with 3 columns namely "Internal Id" , "Description" and "IMS Description" and sorting is applied on them automatically I don't want that default sorting behavior.

I just wanted if user want sorting he can sort according to his will but not because of grouping.

Regards,
Shubham Jain

Dinko | Tech Support Engineer
Telerik team
 answered on 31 Jul 2023
2 answers
161 views

That's it. 

Just move the cursor, and the UI focus, to a specific cell.

Trying to implement the behaviour in the find/replace function, when the user clicks on a search result in the list, and the appropriate cell is highlighted.

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
1 answer
108 views

Add a GridViewCheckBoxColumn to the GridView and set its EnableHeaderCheckBox property to true. An exception is caused when the column is hidden and the Readonly property of the GridView is set.

The test code is as follows: Press Btn1 and then Btn2 to trigger an exception.
public partial class RadForm1 : RadForm
{
    private bool flag1 = false;
    private bool flag2 = false;
    private GridViewCheckBoxColumn checkColumn;

    public RadForm1()
    {
        InitializeComponent();
        AddCheckColumn();
        AddButton();

        this.radGridView1.RowCount = 10;
        this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
        this.radGridView1.MasterTemplate.AllowAddNewRow = false;
    }

    private void AddCheckColumn()
    {
        checkColumn = new GridViewCheckBoxColumn();
        checkColumn.Name = "Select";
        checkColumn.HeaderText = "All";
        checkColumn.EnableHeaderCheckBox = true;
        this.radGridView1.Columns.Insert(0, checkColumn);
        this.radGridView1.HeaderCellToggleStateChanged += RadGridView1_HeaderCellToggleStateChanged;

        this.radGridView1.Columns.Add(new GridViewTextBoxColumn("A"));
        this.radGridView1.Columns.Add(new GridViewTextBoxColumn("B"));
    }

    private void RadGridView1_HeaderCellToggleStateChanged(object sender, GridViewHeaderCellEventArgs e)
    {
        MessageBox.Show($"State:{e.State}");
    }

    private void AddButton()
    {
        Button btn1 = new Button();
        btn1.Text = "Btn1";
        btn1.Click += (o, e) =>
        {
            checkColumn.IsVisible = flag1;
            flag1 = !flag1;
        };
        btn1.Location = new Point(5, 5);
        this.Controls.Add(btn1);

        Button btn2 = new Button();
        btn2.Text = "Btn2";
        btn2.Click += (o, e) =>
        {
            if (flag2)
                radGridView1.Hide();
            else
            {
                radGridView1.Show();
                try
                {
                    radGridView1.ReadOnly = flag2;
                }
                catch { }
            }
            flag2 = !flag2;
        };
        btn2.Location = new Point(120, 5);
        this.Controls.Add(btn2);
    }
}

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2023
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)
Chart (obsolete as of Q1 2013)
Form
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
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
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
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?