Telerik Forums
UI for WinForms Forum
3 answers
185 views
Hi,

The behaviour I am trying to stop is this,

I have a gridview that is used as a generic list/grid that is populated by different data based on a users selections.

I have a function that is called whenever the selection changed event is fired.

My problem is the selection changed event is fired whenever the grid is populated with data, therefore can I stop the autoselection
of the first record whenever the grid is populated.

NB I am using the latest version of the gridview 2010 Q3 (2010.3 10.1215)

Thanks for any help

Andrew
Andrew
Top achievements
Rank 1
Iron
 answered on 11 Mar 2011
1 answer
52 views

 In day view, if we scroll down continuously by using up down key, it goes to the second day.  There should be a lock, one should be able to see only one day’s schedule.  Same case with week view and month view.

Dobry Zranchev
Telerik team
 answered on 10 Mar 2011
5 answers
167 views
Hello,
I have a problem with the application button of the ribbonbar control:
When my application is in normal size (not maximized) the start menu on the top left corner is OK.
When the application is maximized with the maximize button of the application, over the application button (on the top left corner) appears an horizontal white line.
I' m not able to avoid this behaviour, and it also causes problems with my application.

Thanks in advance

Stefan
Telerik team
 answered on 10 Mar 2011
5 answers
113 views

Hello,

I am new at using Telerik products.

I am using a GridView with Hierarchic levels.
I am trying to add a combo box in it, so I created a GridViewComboBoxColumn object , and added it to the GridView like this :

myGridView.MasterGridViewTemplate.Columns.Add(myComboBoxColumn);  and it works.

But now, I want to add the combo to the hierachical second level on the GridView, something like that :

myGridView.MasterGridViewTemplate.ChildGridViewTemplates.Insert(4,myComboBoxColumn);

but I get an error message telling that a GridViewComboBoxColumn object is not assignable to a GridViewTemplate.

So please can you tell me how I could add the GridViewComboBoxColumn to the GridView at this level ?

Thank you.

Alexander
Telerik team
 answered on 10 Mar 2011
5 answers
123 views
Hi,
I want to make contextmenu of filterbutton of my grid right to left. menu's left vertical colorized bar also must be appeared at right.
please guide me.
Ivan Todorov
Telerik team
 answered on 10 Mar 2011
1 answer
114 views
Hello...
          I wanna use wpf expander control so that i can place some controls over it.
   
         I wanna use two expanders. Can u suggest me like how to place rad winform controls on expander...

Hope u reply soon....
Tina Stancheva
Telerik team
 answered on 10 Mar 2011
10 answers
191 views
Hi,

I am using Telerik Q3 2010 on Visual Studion 2008 and C# as the Language for development.
As part of our requirement we need to open up a browser on clicking of a postcode within the address (one of the columns) of the GridView.
When I select the address column as a Group by element, the text within the column is shown as it is.
Is there anyway of setting the DisableHTMLRendering of the group Headers to FALSE or any property within  the GridView to achieve the same functionality.

Please see sample code below and screen shots attached for more details.

 

private void Form1_Load(object sender, EventArgs e)

 

 

{

 

radGridView1.BeginUpdate();

 

radGridView1.AutoSizeRows =

true;

 

 

radGridView1.EnableFiltering =

true;

 

 

radGridView1.AutoScroll =

true;

 

 

radGridView1.ShowGroupPanel =

true;

 

 

radGridView1.EnableHotTracking =

true;

 

 

radGridView1.EnableAlternatingRowColor =

true;

 

 

radGridView1.AllowAddNewRow =

false;

 

 

radGridView1.AutoGenerateColumns =

false;

 

 

radGridView1.BestFitColumns();

 

radGridView1.AllowAutoSizeColumns =

true;

 

radGridView1.AutoSizeColumnsMode =

GridViewAutoSizeColumnsMode.Fill;

 

 

radGridView1.Controls.Clear();

 

radGridView1.ReadOnly =

true;

 

 

radGridView1.Columns.Add(

new GridViewTextBoxColumn("Name"));

 

 

radGridView1.Columns.Add(

new GridViewTextBoxColumn("Address"));

 

 

radGridView1.Columns[1].DisableHTMLRendering =

false;

 

 

radGridView1.Columns[1].WrapText =

true;

 

 

radGridView1.Columns[1].ReadOnly =

true;

 

 

 

 

radGridView1.Rows.Add(

"Lester","<html>21 Yeoman Way <a href=http://maps.google.co.uk/maps?q=BA140QL>BA140QL</a></html>");

 

 

radGridView1.Rows.Add(

"XYX","<html>22 Yeoman Way <a href=http://maps.google.co.uk/maps?q=BA140QL>BA140QL</a></html>");

 

 

radGridView1.Rows.Add(

"ABC","<html>23 Yeoman Way <a href=http://maps.google.co.uk/maps?q=BA140QL>BA140QL</a></html>");

 

 

radGridView1.Rows.Add(

"QEP","<html>24 Yeoman Way <a href=http://maps.google.co.uk/maps?q=BA140QL>BA140QL</a></html>");

 

radGridView1.EndUpdate(

true);
}

 

Stefan
Telerik team
 answered on 10 Mar 2011
4 answers
145 views
Hi,

I have a column in the grid where we have html formatted text with a hyperlink, when you move this column to header, the header row is also displaying the html tags and href text..

attached is the example.

Regards,
khizar
Khizar Khan
Top achievements
Rank 1
 answered on 10 Mar 2011
3 answers
225 views
Hello, it there any way how to find CommandBarDropDownList Item by string value?
I need following functionality. but I miss FindItem function.
CommandBarDropDownList c = new CommandBarDropDownList();
c.Items.Add("a");
c.Items.Add("b");
c.Items.Add("c");
  
c.SelectedItem = c.FindItem("b");

Only way I know is to loop over c.Items and check, but I expect some easier way in components for commandbars (and it was also included in RadToolStrip and is in standard MS).

Thanks for any help, I had to overlook it somewhere, but documentation is quite brief and not many examples.
Zbynek
Xander
Top achievements
Rank 1
 answered on 10 Mar 2011
3 answers
166 views
hi,
How can I know it that the current row is a new row?
Also here is some other questions still unsolved:
1- Is there a control like FilterEditor of Janus Components in Rad Controls Collection?
2- In radTreeView Control when I set the control's right to left to Yes the Left and Right arrow keys treats same as the control in  Left to right mode that is is by pressing left arrow key a node must be expanded (For RTL treeview) but it collapses the node (which is right for LTR mode). how can I have it with correct treatment.
Thank you.
Stefan
Telerik team
 answered on 10 Mar 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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
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
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
NavigationView
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
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
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?