Telerik Forums
UI for WinForms Forum
1 answer
192 views
Hi,
I have a grid with around 40 columns. I have kept the column chooser element active for this grid. Now i have some operations to perform every time a column is added or removed from column chooser. How can i implement this? I tried with the grid paint vent but it causes a delay due to looping checks. Can you suggest me a good alternative please.
Nikolay
Telerik team
 answered on 29 Sep 2012
1 answer
159 views
I can use the "NodeMouseHover" event to know whether or not I am physically hovering over the node, but how can I tell if I'm over the image which is displayed with the node?

Seems simple enough, but not so far.
Stefan
Telerik team
 answered on 29 Sep 2012
5 answers
70 views
I have a grid with 4 columns in it.  when the user want's to add a new or edit an existing row though i need to show about 10 columns for entry.  Is this possible?  if so, how do i accomplish that?

Thanks!
Stefan
Telerik team
 answered on 29 Sep 2012
1 answer
80 views
How do I get the gridview to initialize with only the master template displayed?
Stefan
Telerik team
 answered on 29 Sep 2012
2 answers
326 views
Hello,

I need to edit some percent values in a grid, each time I quit an edited cell the value is automaticaly divided by 100. Even if I don't edit anything, entering edit mode and quitting divide the value by 100.

Is there another way to edit percent values in a grid? I tried to attach an example but I can't, the forum doesn't accept archives, I put here the interresting code:

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
 
 
            radGridView1.Columns.Add(NewPercentCol());
 
            radGridView1.Rows.Add(15.51);
            radGridView1.Rows.Add(25.52);
            radGridView1.Rows.Add(35.53);
 
        }

        private GridViewMaskBoxColumn NewPercentCol()
        {
            return new GridViewMaskBoxColumn()
            {
                HeaderText = "Percent",
                Mask = "p",
                FormatString = "{0:p}",
                MaskType = MaskType.Numeric,
                TextAlignment = ContentAlignment.MiddleRight,
                Width = 300
            };
        }
    }

Thank you.
Catalin
Top achievements
Rank 1
Veteran
 answered on 28 Sep 2012
1 answer
342 views
Hola Chicos tengo un problema le explico a continuación:
Estoy trabajando con un radGrid que tiene varias columnas, por ejemplo
tengo una columna de Orden de Producción y la otra de Productos, lo quiero hacer en el grid es: Cuando yo digite un numero de producción se me carguen todos los productos que pertenezcan a  la orden que digite, pero no deseo que se me cambie toda la columna con los nuevos valores,  solo deseo que se me cambien los valores de la fila activa con la que estoy trabajando. No tengo mucha experiencia con los controles por favor ayudemen. adjunto el código que estoy intentando hacer.


private void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e)
        {
            if (radGridView1.CurrentColumn.Name == "Producto")
           {
                if (e.EditorType == typeof(RadTextBoxEditor))
                {
                    e.EditorType = typeof(RadDropDownListEditor);
                }
            }
        }

 private void radGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
        {
            try
            {
               if (e.Column.Name == "Producto")
                {
                    RadDropDownListEditor editor = e.ActiveEditor as RadDropDownListEditor;
                    if (editor !=null)
                    {
                        RadDropDownListEditorElement element = editor.EditorElement as RadDropDownListEditorElement;
                        element.DisplayMember = "Descripcion";
                        element.ValueMember = "codigo";
                        element.DataSource = DsProducto.Tables[0];    
                    }   
                
                }
            }
            catch (Exception)
            {
                
                throw;
            }
           
        }

  private void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e)
        {


            if (radGridView1.CurrentColumn.Name.Equals("Orden de Produccion"))//OP
            {
                //Aqui consultamos todos los productos que tiene definidos para esa OP
                      DsProducto = AdpMuestra.ConsultarProdPorOrden(Convert.ToInt32(radGridView1.CurrentRow.Cells["Orden de Produccion"].Value), DateTime.Today);
                }
    }
Anton
Telerik team
 answered on 28 Sep 2012
1 answer
70 views
Hello,

Based on Dataset rows, dynamically am defining wizardpage,panel,label, radio buttons and then add it to wizard to display question and options. It works perfect.

But in Next/Back button i need to get the radiobutton answer provided by user. How to find the answer as the controls are added dynamically?

Its urgent.

Jayanthi
Stefan
Telerik team
 answered on 28 Sep 2012
1 answer
63 views
Hello,

Is it possible to create chart with bubbles like GRAPE chart in windows or web ?

Jayanthi
Evgenia
Telerik team
 answered on 28 Sep 2012
2 answers
133 views
Hi,

Is Windows Forms Metro UI style supported on Windows XP?

Thanks,
Martin Kulov
Top achievements
Rank 2
 answered on 27 Sep 2012
6 answers
119 views
Hi,

I have a scheduler which displays a single day, when I add an appoinment and resize it out side the view of the scheduler the scroll bar does not move with the resizing of the appointment. I would like to achive the same as the outlool calendar.

This is the scheduler in my app:
http://screencast.com/t/gaDDR5TWqx

This is out look
http://screencast.com/t/zYgGuzwu1y

Is this possible?

Thanks
Ivan Todorov
Telerik team
 answered on 27 Sep 2012
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
Iron
Iron
Sergii
Top achievements
Rank 1
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
Iron
Iron
Sergii
Top achievements
Rank 1
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?