Telerik Forums
UI for WinForms Forum
2 answers
159 views
Hello,

In the example "GridView / Custom Filter Row" when you search initially in the row bar nothing happens. It's requiered to push the "Apply" button at least once to make the row bar works properly.

I'd like to use this sample in my project but I don't find where the problem is.

Thanks


Blas
Top achievements
Rank 1
 answered on 14 Nov 2011
4 answers
557 views
Hi, the winforms toolset lists the following as a feature:

Stunning WPF-like UI with transparency, scaling and rotation

... I downloaded and installed the trial, opened  VB.net 2005, and started dragging and dropping telerik winform controls on the form.  They are very nice.

But I could find no way to make stunning WPF-like transparancy.  How do you accomplish that?  I could not readily find out from the docs or examples either.

Also the sample VB.net project with the trial download will not run and seems to have some big problems.

My scenario is I have a pretty simple form with big map on it taking up the whole form.  I want to put some translucent panels on top of the map, and then some semi or non-translucent buttons, text boxes, and combo boxes, in the panels. 

I am hoping that the stunning WPF-like UI with transparency that radcontrols for winforms offers will help me accomplish this - but I could use some pointers to get started.

Thanks for the help!  Great looking tools by the way. 

JB











Nikolay
Telerik team
 answered on 11 Nov 2011
17 answers
476 views
Noticed an issue with the autocomplete functionality in regards to the DropDownList not selecting the item when the control loses focus when in SuppestAppend' mode.  In an older Demo for the ComboBox you type the letter 'U' and 'USA' is selected and when you tab off the Index and Text fields are populated on the right hand side.  In the latest demo for the DropDownList  you type the letter 'U' and 'USA' is NOT selected and when you tab off the Index and Text fields are NOT populated on the right hand side plus the drop down portion of the control does not disappear.  Also if the drop down portion is already displayed when a letter is first pressed, then the full list stays whilat a new list appaers with the suggested items.
Nikolay
Telerik team
 answered on 11 Nov 2011
3 answers
251 views
Hello,

I have a grid with dynamic columns, and for certain columns I need a button link that allows navigation to the master record related with the value (buttonlink.jpg).

For example, if colums show "Customer code", left to the customer code an arrow allows to open the form "Customer" and shows all the information related with such code.

This is the code to show the button:
Private Sub gridSELECT_CellFormatting(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.CellFormattingEventArgs) _
        Handles gridSELECT.CellFormatting
       e.CellElement.Image = Nothing
       If e.CellElement.ColumnInfo.Name = "CardCode" AndAlso TypeOf e.CellElement.RowInfo Is GridViewDataRowInfo Then
           e.CellElement.ImageAlignment = ContentAlignment.MiddleLeft
           e.CellElement.Image = My.Resources.arrow_right
           e.CellElement.TextImageRelation = TextImageRelation.ImageBeforeText
       End If
 
   End Sub

How can I do to catch the click in this button? Is it possible?

Alexander
Telerik team
 answered on 11 Nov 2011
3 answers
176 views
Hi.

My interpretation of a combo box is, that one can either select an element from a predefined list - or just enter a value directly.

However, the GridViewComboBoxColumn seems not to work this way. I do have:

 

 

RadDropDownListEditor le = (RadDropDownListEditor)this.MasterTemplate.ActiveEditor;

 

 

 

RadDropDownListEditorElement ee = (RadDropDownListEditorElement)le.EditorElement;

 

le.DropDownStyle =

 

RadDropDownStyle.DropDown;

 

ee.AutoCompleteMode =

 

AutoCompleteMode.None;

But whatever entered directly in the combo box disappears when I move to next column.

Is there a way to meet my expectations so if the user enters data directly, it'd be considered text and applied to the field when the editor closes.

I need this behaviour cause sometimes data has to be selected from a list - and sometimes they should be entered directly...

Jeppe

 

Nikolay
Telerik team
 answered on 11 Nov 2011
8 answers
441 views
I'm planning to use the treeview as an alternative for the listview component for displaying multiple lines that can:

- indent
- selected via checkbox
- drag/drop
- image per line (node)
- collapse/group lines

All can be done with the treeview. The only thing I have on my "wishlist" is a way to number the "lines" (= nodes). Is it possible to add lines numbers to the left of the notes, just like f.e. in a code editor (all aligned on the left before the nodes)?
Stefan
Telerik team
 answered on 11 Nov 2011
4 answers
443 views
Hi All,

In order to save space and for information purposes I am trying to display a column header text in two lines if possible like:

==============
Exepnses
($ per day)
=============

Is there a suitable way to do this?

Regards,

George

Svett
Telerik team
 answered on 11 Nov 2011
3 answers
311 views
Tech, 

I am using Telerik Version 2009.2.9.701. and Using Telerik.WinControls.Docking.DockingManager in my Form. I am using DockPanel. when user start drag and Drop. I want to prevent user from dropping to Fill DockPosition.

In new version, offers DragDropService which has AllowedDockManagerEdges and PreviewDockPosition to achive this funcnality. But, at this point I can not update the my Telerik Version to new one.so, I have restriction to use only 2009.2.9.701.

Please suggest any solution or workaround that is avilable in 2009.2.9.701 Version in Telerik.WinControl.Docking.dll. 

Help would be appriciated.

Thanks.
Julian Benkov
Telerik team
 answered on 11 Nov 2011
1 answer
186 views
Hi all,

Due to the current lack of support of the RadtreeView for automatic drag and drop when the control is databound, to I am trying to "roll my own". However, I got stuck on a few things, so I really hope someone can help me out.

I have subclassed the RadTreeView, RadTreeViewElement and TreeViewDragDropService classes and am implementing my own versions of OnDragEnter and OnDragDrop. I am assuming that the DragDrop event is the one that I need to override in order to find out on which node the dragged one is dropped.

I can easily find out what node is being dragged by using the value returned in the Data object as below:

drgevent.Data.GetData(typeof(RadTreeNode))

That works fine. However, I am failing to (1) find out what node it is dropped on and (2) what the databound item is for that node. When I use:

var targetNode = this.GetNodeAt(drgevent.X, drgevent.Y)


it always returns null, and I don't see any method or property that returns the item a node is bound to. I was hoping for something similar to the one in the DataGridView (row.DataBoundItem). Is there anything like that, and what do i do to get the node that the dragged item is dropped on?

Thanks in advance (I have been tearing my hair out about this for far too long).

Lucien.
Svett
Telerik team
 answered on 11 Nov 2011
1 answer
228 views
Hi.  We're running the 2011.1.11.419 version of this control in our product.  Our users have pointed out that the keyboard delat that allows you to jump to longer selections has gotten much smaller.  So if you have a dropdown with "Bart", "Bob", and "Olaf", you have to type "bo" very quickly to get to Bob, otherwise your selection ends up on "Olaf".  I hope this makes sense... I have no idea what you correctly call this feature.

I tried this on the Winforms RadControls demo app, and I had exactly the same result.  The maximum delay you can have between typing the "B" and the "o" seems to be 500ms or less, when I'm sure it used to be 1000ms or more.

For our users this is quite a nuisance, since most of them type with two fingers but need to move quickly through dropdowns with hundreds of options.  (On the upside... they're learning to type faster :)

Please let me know if you think this is an issue that has appeared in version 2011 / 419 or not.  Thanks.
Peter
Telerik team
 answered on 11 Nov 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
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?