Telerik Forums
UI for WinForms Forum
5 answers
148 views
hello,

in a gridview
I'm looking to have a highlight but only on a cell and not on a row when mouse is over.
 
My gridview is automaticaly load by a Sqltable.

And I want to set a fix width for my columns is it possible and how I do it ? 
 
thanks
(I'm french and rookie in windform)
Nikolay
Telerik team
 answered on 13 Mar 2008
1 answer
156 views
Hello again,

Im getting the same problem with using a newer version of CompositeUI. The telerik components are linking to an older one.

I solved it using the older one..

Error 1 The type 'Microsoft.Practices.CompositeUI.SmartParts.Workspace`2<T0,T1>' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Practices.CompositeUI, Version=1.0.51205.0, Culture=neutral, PublicKeyToken=null'. ..\Source\Infrastructure\Infrastructure.Layout\Module.cs 33 13 Infrastructure.Layout

But i rather see the new one being used.

Greetings
Jordan
Telerik team
 answered on 13 Mar 2008
1 answer
203 views
Hi,

I'm getting the following error trying to build the Telerik.CAB.WinForms

Error 1 The type 'Microsoft.Practices.ObjectBuilder.IBuilderAware' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Practices.ObjectBuilder, Version=1.0.51205.0, Culture=neutral, PublicKeyToken=null'. ..\Source\Telerik.CAB.WinForms\Application\RadFormShellApplication.cs 7 11 Telerik.CAB.WinForms (Source\Telerik.CAB.WinForms\Telerik.CAB.WinForms)

I know why because the enterprice library i'm using is "Enterprise Library May 2007" and the one u used might be "Enterprise Library April 2007"

Greetings 
Jordan
Telerik team
 answered on 13 Mar 2008
2 answers
213 views
Hey,
       I want to know if Week numbers can be displayed in the RadDatePicker?
Thank you
Lamees Afify
Top achievements
Rank 1
 answered on 13 Mar 2008
1 answer
98 views
I have a form with telerik ribbonbar, ad few docking panel....

in my form code, I do have something like this

        Me.Enabled = False
           ' do something here
        Me.Enabled = True

I found that, during the Me.Enabled = False, it will turn all telerik component to "gray" color. Is that anyway to prevent this? I would prefer they look normal.
Nikolay
Telerik team
 answered on 13 Mar 2008
5 answers
113 views
Hi,

I would like to have something like AJAX loading in my win application. Which means that, during the loading time, it will show some gif running sitting on top of a semi transparent panel (to avoid user continue using the application).

May I know izzit possible to do that with Telerik control?

Please advice.
Nikolay
Telerik team
 answered on 13 Mar 2008
1 answer
116 views
I am having an issue with the RadGrid control when binding to a DataSet that uses a Expression Column.

The expression column is 

Parent(CategoriesProducts).CategoryName

When I bind this DataTabe to a DataGridView there is no error.

But if I try to bind the DataTable to a RadGridView I get the error.

Cannot find the parent relation 'CategoriesProducts'.


Martin Vasilev
Telerik team
 answered on 12 Mar 2008
2 answers
202 views
How can i add a tooltip on the selected row

I wan to show first coloum text on the tooltip of selected row

is there any direct propery to set the tooltiip or some alternate solution
please let me know
ashok
Top achievements
Rank 1
 answered on 10 Mar 2008
1 answer
169 views
I have a radgridviw. In the last column of the gridview, I would like to use a menu items to provide additional functionality such as viewing documents, editing documents, etc. I have the controls loaded in the grid, and they display fine, but I can not capture any events in the column containing the menu items. Code pasted below.

public partial class LALA: UserControl
    {
        public LALA()
        {
            InitializeComponent();
            BindToDataReader();
            gvManageDocs.CellFormatting += new  CellFormattingEventHandler(gvManageDocs_CellFormatting);             
        }
     

        private void gvManageDocs_CellFormatting(object sender, CellFormattingEventArgs e) 
            {

                if (e.CellElement is GridCommandCellElement) 
                { 
                    if (e.CellElement.Children[0] is RadButtonElement ) 
                    { 
                        e.CellElement.Children.Clear();

                        RadMenuElement buttonElement = new RadMenuElement(); 
                        //RadDropDownButtonElement buttonElement = new RadDropDownButtonElement();
                        buttonElement.Items.Add(new RadMenuItem("view")); 
                        buttonElement.Items.Add(new RadMenuItem("modify")); 
                        buttonElement.Items.Add(new RadMenuItem("release"));
                        buttonElement.Items.Add(new RadMenuItem("new")); 
                        e.CellElement.Children.Add(buttonElement); 

                    } 
                } 
            } 

        private void BindToDataReader()
        {

            gvManageDocs.GridElement.BeginUpdate();
            gvManageDocs.MasterGridViewTemplate.Columns.Clear();
            gvManageDocs.GridElement.EndUpdate(false);
            gvManageDocs.GridElement.BeginUpdate();

            gvManageDocs.MasterGridViewTemplate.AutoGenerateColumns = false;
            gvManageDocs.MasterGridViewTemplate.AllowAutoSizeColumns = true;
            gvManageDocs.MasterGridViewTemplate.AllowAddNewRow = false;

            char[] delimiterChars = { ',' };
            string strHeaders = AppGlobal.g_strAllManageHeaders;
            string[] allHeaders = strHeaders.Split(delimiterChars);
            string strDataFields = AppGlobal.g_strAllManageData;
            string[] allDataFields = strDataFields.Split(delimiterChars);

            for (int x = 0; x < allHeaders.Length; x++)
            {               
                if (x == allHeaders.Length-1)
                {
                    GridViewCommandColumn column = new GridViewCommandColumn();
                    column.HeaderText = allHeaders[x].ToString();
                    column.DataField = allDataFields[x].ToString();
                    gvManageDocs.MasterGridViewTemplate.Columns.Add(column);
                    column = null;
                }
                else
                {
                    GridViewTextBoxColumn column = new GridViewTextBoxColumn();
                    column.HeaderText = allHeaders[x].ToString();
                    column.DataField = allDataFields[x].ToString();
                    gvManageDocs.MasterGridViewTemplate.Columns.Add(column);
                    column = null;
                }
            }
        
 
             gvManageDocs.GridElement.EndUpdate(false);
           
            this.gvManageDocs.DataSource = DATASET
           
           
        }

    }

Jack
Telerik team
 answered on 10 Mar 2008
3 answers
139 views
Yet another theming issue:

We have noticed that it is only possible to add 10 theme files to the Theme Manager - once it hits this limit, I can keep trying to add more, but they never show up in the list.

Please let us know if this is true - the documentation does not mention anything about a limit on theme resources - and we have so many because we are breaking the theme files up by control-type, and intend to merge them once the themes are set. We do this because the VSB crashes when using 'complex' theme files.

We have a deadline this week and are currently help up due to theming issues on our project, at this point we need a response as soon as possible so we can decided a course of action to move forward.

Nikolay
Telerik team
 answered on 07 Mar 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)
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?