Telerik Forums
UI for WinForms Forum
5 answers
381 views
I have a data table object that I bind a gridview to. During runtime, I'd like to give the user an option to add a column to the gridview. Now ideally the way I thought it would work was if I add a column to the Data Table object that the grid view is bound to, it would automatically add that column to the gridview because of the data binding. But when I try that, only the Data Table is updated with the new column and not the GridView. Am I not using databinding correctly? 

Thanks
Emanuel Varga
Top achievements
Rank 1
 answered on 27 Oct 2011
1 answer
200 views
Hi,
I have a problem when loading a layout configuration file im my application at startup and when I choose to change layout:
My layout configuration is a XML file and i use a RadDock and the method LoadFromXml(path), where path is where the complete path where the layout configuration file is present (*.xml).
The file is present and the layout is correctly loaded, but the application performs a bad animation during the layout update.
My Goal is to hide the layout changing animations and to show only the final result with the windows correctly positioned on the RadDock control.
Is there a way to build the layout without showing the intermediate state of the creation process of the layout, but only the final result?
Julian Benkov
Telerik team
 answered on 26 Oct 2011
2 answers
178 views

Hi

I'm trying to use a telerik RadRichTextBox for my windows form.  Is there a way I can remove the cursor from the control after inserting the value using the following line:

    RADRichTextBox1.Insert('xxx')

    RADRichTextBox2.Insert('yyyy')

Please see the attachment for reference. 


Svett
Telerik team
 answered on 26 Oct 2011
2 answers
154 views
Hi,

I was trying to write a custom column having textbox and an image to be useds as lookup column. I tried  following code and it work perfectly except the image did not appear in center. Please advise.

    void radGridView1_CellEditorInitialized(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
    {
        if (e.Column.Name == "Lookup")
        {
            RadImageItem imgElement;
            imgElement = new RadImageItem();
            imgElement.Margin = new Padding(0, 2, 0, 0);
            imgElement.Alignment = ContentAlignment.MiddleCenter;
            imgElement.Image = Properties.Resources.hd_find.ToBitmap();
            //imgElement.MinSize = new Size(20, 5);
            imgElement.Size = new Size(50, 5);
            imgElement.AutoSize = false;
            //imgElement.AutoSizeMode = RadAutoSizeMode.FitToAvailableSize;
 
            this.radGridView1.CurrentCell.Children.Add(imgElement);
 
                if (!tbSubscribed)
                {
                         
                    RadTextBoxEditor tbEditor = this.radGridView1.ActiveEditor as RadTextBoxEditor;
                    if (tbEditor != null)
                    {
 
                    tbSubscribed = true;
                    RadTextBoxEditorElement tbElement = (RadTextBoxEditorElement)tbEditor.EditorElement;
                    tbElement.KeyDown += new KeyEventHandler(tbElement_KeyDown);
                }
            }
        }
    }
 
    void radGridView1_CellEndEdit(object sender, GridViewCellEventArgs e)
    {
        if (e.Column.Name == "Lookup")
        {
            if (this.radGridView1.CurrentCell.Children.Count == 1)
            {
                this.radGridView1.CurrentCell.Children.RemoveAt(0);
            }
        }
    }
    void tbElement_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.F1)
        {
            ((RadTextBoxEditorElement)sender).Text = "Default text";
        }
 
     
    }
 
    void radGridView1_CreateCell(object sender, Telerik.WinControls.UI.GridViewCreateCellEventArgs e)
    {
        if (e.Row is GridDataRowElement)
        {
            if (e.Column.Name == "Lookup")
            {
                e.CellType = typeof(RadTextBoxExtCellElement);
            }
        }
    }
 
 
 
 
public class RadTextBoxExtCellElement : GridDataCellElement
{
    private int imageWidth = 30;
    private int imagePadding = 2;
 
    public RadTextBoxExtCellElement(GridViewColumn column, GridRowElement row)
        : base(column, row)
    {
    }
 
 
 
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(GridDataCellElement);
        }
    }
 
 
 
    protected override SizeF ArrangeOverride(SizeF finalSize)
    {
        base.ArrangeOverride(finalSize);
        if (this.Children.Count == 2)
        {
            RectangleF rect = GetClientRectangle(finalSize);
            RectangleF rectEdit = new RectangleF(rect.X, rect.Y, rect.Width - (imageWidth + imagePadding), rect.Height);
            RectangleF rectImage = new RectangleF(rectEdit.Right + imagePadding, rect.Y, imageWidth, rect.Y);
            this.Children[0].Arrange(rectEdit);
            this.Children[1].Arrange(rectImage);
        }
 
        return finalSize;
    }

Thanks,
devoas
devoas
Top achievements
Rank 1
 answered on 26 Oct 2011
0 answers
56 views
Hi, I need to program the following:


I have a list <li> of ASP ImageButton(s) which I want to set their ImageURL properties with images loaded from a SQL Server database.


I've seen people implemeent it in the HTML markup of the using <? Eval("Image"); ?>


That seems to be the approach I am looking for but don't know what else to set.


I have loaded a DataTable object containing just a column-field of type Binary holding Images.


Please advise.  Please provide detail examples if possible. :)
Mail
Top achievements
Rank 1
 asked on 26 Oct 2011
1 answer
95 views
Hello,
I have problem with grouping in the RadDataGridView. In my project the grid must be in the virtual mode: (VirtualMode = true) (filling some cells are taken from a list; FieldName property cannot be used), but grouping by some parameter (in the grid) is not working in this mode, since Grouping property is joined with bindingSource controller, which I cannot use (If I understood well the functionality). Thus, it is possible to group data in the virtual mode? If it does, could someone attache a piece of code for me?
Thank.

 
Emanuel Varga
Top achievements
Rank 1
 answered on 26 Oct 2011
1 answer
89 views
I upgrade my telerik version from 2010 Q1 to 2011 Q1

After that there is a error

Error 241 Property or indexer 'Telerik.WinControls.UI.GridViewColumn.Index' cannot be assigned to -- it is read only

Sooo I want to know how I can fix this Issue...... 

Pls let me know if there is a another way to set column index

Emanuel Varga
Top achievements
Rank 1
 answered on 26 Oct 2011
1 answer
196 views
Hello,

We are using a MultiColumn ComboBox for a drop down list in our app.

I'd like the user to only be able to enter values that are contained in the list.

Currently, they can type anything they like in the box, and save it.

Of course, they can also use their mouse to select an item, but we'd like to prevent them from saving invalid data.

Thanks,

--shawn
Shawn
Top achievements
Rank 1
 answered on 24 Oct 2011
6 answers
474 views
Is there a simple way to search a column for a specified text and then select the first (then next) row with the text, if found?

(I am aware of the Filter functionality, but that is not what I need here.)

I'm having a hard time adjusting to the object model of the RadGrid, being used to such simple things as MSFlexGrid.TextMatrix(iRow, iCol).

Can you point me to a grahic view of the RadGrid object model?

Finn

Martin Vasilev
Telerik team
 answered on 24 Oct 2011
1 answer
89 views
Hi!

How can I customize (with Visual Style Builder) the style for the GroupPanelElement and GroupFieldElement (highlighted in capture.png).

Thanks.
Ivan Petrov
Telerik team
 answered on 24 Oct 2011
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
StatusStrip
CheckedListBox
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
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
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
+129 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?