Telerik Forums
UI for WinForms Forum
5 answers
236 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
186 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
213 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
139 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
274 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
213 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
298 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
249 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
1 answer
407 views
Hi Guys,
I am trying to extend Telerik Textbox control to add some custom functionality. I have simply added a class and inherited it from RadTextBox class. The problem is when I add this control to my project it looks flat and does not have the fill etc that normal RadTextBox has. What am i missing? Kindly help
Best Regards,
Syed Afraz Ali
Richard Slade
Top achievements
Rank 2
 answered on 10 Mar 2011
8 answers
1.6K+ views
Hi,

I have a windows application. On one button click i am performing some long processing Task. I am trying to use a Rad Waiting bar to indicate the status of long-running operations. When i am starting the waiting bar in the same thread where my task is getting performed,  it looks like system is hung and does not show the Waiting bar also.

I went through various articles and all  articles tell about starting the long running operation in a different thread.
I do not want to do it in a separate thread.

Is there any alternate way of showing the waiting bar without in a different Thread.

Any kind of help is appreciated.

sasmita
Nikolay
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)
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?