Telerik Forums
UI for WinForms Forum
1 answer
176 views
I know this topic has been brought up before, but I believe it is one of the most important features that should be included in the next release of RadControls for WinForms.  Will Aero glass ever be incorporated into Telerik's RadRibbon?  Other ribbon vendors have achieved this already... I think at least Telerik could figure out how they do it and provide it to us :)  Are there any setbacks or challenges preventing you from implementing this feautre?  I would love this so much, and anything you could do to make this happen would be amazing!

Thanks,

UIdev
Nick
Telerik team
 answered on 07 Nov 2008
3 answers
161 views
Hi,

In GridView, contextmenu are generated on the fly.

In ContextMenuOpening , I can access the items with index.

e.ContextMenu.Items[3]

But how access it by name ? For example, what's the default name for items[0] please ?



Nick
Telerik team
 answered on 07 Nov 2008
2 answers
231 views
Hi everyone,

Is there a way to show more than one field? As far as I can tell 'DisplayMember' only allows one field, but I'd like to display multiple.

I made the same application with RadTree in WebForm and there I could easily change the text in the 'NodeBound' event. I didn't find this in WinForm.

Thanks
Thomas
Nick
Telerik team
 answered on 07 Nov 2008
1 answer
205 views
We have our grid working very nicely now. Just one issue I need to work through.

Is there any way to stop a picture stretching out of proportion? I need to allow the picture to grow if column and row size is increased but keep the proportions.

Any help much appreciated.




Nick
Telerik team
 answered on 07 Nov 2008
1 answer
294 views
Hi!,

Have a very simple example, binding custom collection to grid. And have a button, in event handler of it "bindingsource.AddNew();". Problem is when you sort grid, then try to add new row, I got "Object reference not set to an instance of an object." exception.

Here is the code, it is very simple:

public partial class Form1 : Form  
    {  
        public Form1()  
        {  
            InitializeComponent();  
        }  
 
        private void Form1_Load(object sender, EventArgs e)  
        {  
            InitEmployeeGrid();  
            InitActions();  
            BindData();  
        }  
 
        private void InitEmployeeGrid()  
        {  
            gridView.MasterGridViewTemplate.AllowAddNewRow = false;  
            gridView.MasterGridViewTemplate.AutoGenerateColumns = false;  
 
            GridViewTextBoxColumn nameColumn = new GridViewTextBoxColumn();  
            nameColumn.FieldName = "Name";  
            nameColumn.HeaderText = "Name";  
            nameColumn.UniqueName = "nameColumn";  
 
            gridView.Columns.Add(nameColumn);  
        }  
 
        public void InitActions()  
        {  
            addToolbarButton.Click += new EventHandler(addToolbarButton_Click);  
            cancelToolbarButton.Click += new EventHandler(cancelToolbarButton_Click);  
        }  
 
        void cancelToolbarButton_Click(object sender, EventArgs e)  
        {  
            if (gridView.DataSource != null)  
            {  
                (gridView.DataSource as BindingSource).CancelEdit();  
                gridView.CancelEdit();  
            }  
        }  
 
        void addToolbarButton_Click(object sender, EventArgs e)  
        {  
            if (gridView.DataSource != null)  
            {  
                (gridView.DataSource as BindingSource).AddNew();  
                gridView.BeginEdit();  
            }  
        }  
 
        private void BindData()  
        {  
            employeeBindingSource.DataSource = CreateDataSource();  
            gridView.DataSource = employeeBindingSource;  
        }  
 
        private object CreateDataSource()  
        {  
            List<Employee> result = new List<Employee>();  
 
            result.Add(new Employee("Georg"));  
            result.Add(new Employee("Mike"));  
            result.Add(new Employee("Timothy"));  
 
            return result;  
        }  
    } 

Can anybody help me with this ? Thanks.
Nick
Telerik team
 answered on 07 Nov 2008
1 answer
95 views

Values on the x and y axis scale if become very large they tend to overlap. How to avoid this?

Dwight
Telerik team
 answered on 06 Nov 2008
1 answer
117 views

We need to implement progressive zoom functionality for our Rad charts. Is this supported OR what is the best method to implement it. (The chart type is line chart)

How do i go about it ?

Dwight
Telerik team
 answered on 06 Nov 2008
4 answers
116 views
Hi,
I have a mdi form which opens a child form. The problem I have is that the panelbar on the main form covers part of the child form when maximised. I wish I could attach a screenshot to show you.

Thanks for any help,

Derek.
Nikolay
Telerik team
 answered on 06 Nov 2008
3 answers
342 views
I want to add a telerik component in my page on pageload event....I tried to use page.Controls.Add(telerikComponent);
But this function needs ASP components to pass as a parameter in, not the telerik components.....what to do for it plz help me!
Nikolay
Telerik team
 answered on 06 Nov 2008
3 answers
204 views
Hi there,

I'm trying to generate xml from the datasource of rad gridview. Following is how I'm binding data to the grid:

radgvParticulars.MasterGridViewTemplate.DataSource = dsTODetails.Tables[1];

I'm wrote the following code to extract the xml from the datasource:

DataSet ds = (DataSet)radgvParticulars.DataSource;
string strXml = ds.GetXml();

This throws an InvalidCastException - "Unable to cast DataTable object to DataSet object". Then I tried the same by writing the below code:

DataTable dt = new DataTable();
dt = (DataTable)radgvParticulars.DataSource;
DataSet dsnew = new DataSet();
dsnew.Tables.Add(dt);
string strXml = dsnew.GetXml();

But this throws another exception: "DataTable already belongs to another DataSet".

I'm unable to proceed further. Pls help.

Regards,
Pramod Goutham.
Nick
Telerik team
 answered on 05 Nov 2008
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?