Telerik Forums
UI for WinForms Forum
3 answers
198 views
I have used Panorama in my existing application. I have added 3 tiles of colspan 2 in 4 rows(3 in each row). In the 4th row as i made colspan of one tile to 3.Now the tiles which are closed to border of tile group are not clickable. I have faced this issue even by changing the tiles setting. But if i increase the width of the Tile Group and Panorama the tiles becomes clickable. So the issue in short is the tiles close to the tile group are not clickable.

I have been unable to resolve this for many days. waiting for your reply
Ivan Todorov
Telerik team
 answered on 30 Nov 2012
4 answers
412 views
Hi.

I have a Listview control populated using a Datadapter. I want to display an image from an ImageList control. The index is based on a value in a column. How can I achieve this?

Thanks,

Javier
Plamen
Telerik team
 answered on 30 Nov 2012
1 answer
136 views
Hi,

I am using RadDropDownList. Howerver when a DataSource has more items (there are two items has the same text but different value). When i input a text on the RadDropDownList, Autocomplete box is displayed and i changed selection between two items on it. My dropdownlist value is not changed.

Please help me!


Manh
Peter
Telerik team
 answered on 30 Nov 2012
14 answers
345 views
Hello

I have 74 columns in my grid view which a user can choose to view or not using the column chooser.

On first bind of the grid it leaves about 10 of these visible but makes the rest invisible, this is making the startup of my windows app incredibly slow.., to the point that it sometimes crashes..

I know 74 is a huge amount, but this is a business requirement to give the users the option.

Is there anyway of doing this using the grid view and column chooser without it being so incredibly slow, or do you have any suggestions of another method I can use?

Thanks

Becky
Jack
Telerik team
 answered on 30 Nov 2012
7 answers
207 views
Hi

I have created a form which I am using as a standard form with a ribbon and standard buttons. I tried to inherit this form then added another button to the ribbon and put it in a certain position but when I run the program the position is not what it suppose to be. where am I going wrong? I have added 3 attachments to demostrate this.

Thanks
Celeste
Peter
Telerik team
 answered on 30 Nov 2012
7 answers
326 views
Hi,
I want to validate the user input on the focus lost event of the radcomboBox. How can I achieve this?
Ivan Todorov
Telerik team
 answered on 30 Nov 2012
2 answers
114 views
In the Visual Style Builder there is no text primitive or image primitive elements to change settings on a RadButton.  Please let me when this will be fixed or if there is something I am doing wrong.  
Boryana
Telerik team
 answered on 30 Nov 2012
5 answers
351 views
Hi,

I'm trying to drag a radtreeview node into a radtextbox. I just want the information stored in the node "ToolTipText" to be displayed in the radtextbox.I did the following:
1. Set radtreeview AllowDragDrop to true
2. Set readtxtbox AllowDrop to true
3. In order to block radtreeview nodes to be moved in the tree I implemented a "DragEnding" event:
private void treeview_DragEnding(object sender, Telerik.WinControls.UI.RadTreeViewDragCancelEventArgs e)
{
e.Cancel = true;
}

 

4. I also implemented a "ItemDrag":

private void treeview_ItemDrag(object sender, Telerik.WinControls.UI.RadTreeViewEventArgs e)
{
    DoDragDrop(e.Node, DragDropEffects.Copy);
}

5. In the radtextbox I implementeded the following "DragEnter" event:

private void textbox_DragEnter(object sender, DragEventArgs e)
{
    IDataObject dataObject = e.Data;
    if (dataObject == null)
        e.Effect = DragDropEffects.None;
    else
    {
        Telerik.WinControls.UI.RadTreeNode Node = dataObject.GetData(typeof(Telerik.WinControls.UI.RadTreeNode)) as Telerik.WinControls.UI.RadTreeNode;
        if (Node != null)
            e.Effect = e.AllowedEffect;
        else
            e.Effect = DragDropEffects.None;
    }
}

6. I also implemented the "DragDrop"event for the textbox:

private void textbox_DragDrop(object sender, DragEventArgs e)
{
    IDataObject dataObject = e.Data;
    if (dataObject != null)
    {
            Telerik.WinControls.UI.RadTreeNode Node = dataObject.GetData(typeof(Telerik.WinControls.UI.RadTreeNode)) as Telerik.WinControls.UI.RadTreeNode;
            if (Node != null)
                textbox.Text = textbox.Text.Insert(textbox.SelectionStart, "Ok");
    }
}

the problem is that the opration is not working. When I move a node over the radtextbox the program frozes. I used the VS "debug | break all" menu option and the stack has a lot of "_ItemDrag" event calls.

Any ideas?

Thanks,

Francisco


Stefan
Telerik team
 answered on 30 Nov 2012
1 answer
128 views
Hi all,

How can I check if an appointment intersects with an other appointment?

I'm using the radscheduler for a planning tool. I'm using recurring appointments to determent the work scheduler for the employees. 
But I can't figure out how to check if the appointments intersects with the recurrencerule of the appointments.

Edit
I also would like to know how I can add an appointment for every resource. This specifically for the holydays (Christmas for instance)

greetings

Ivan Todorov
Telerik team
 answered on 30 Nov 2012
4 answers
160 views
Hi Telerik Team, In Radcontrols for WPF and for Silverlight there is a Dataform control. Is there something similiar in Radcontrols for Winforms as there is a Formcontrol? Is there a sample available? Or do I have to create the control or form myself? Thank you. Kind regards, Joerg
Plamen
Telerik team
 answered on 30 Nov 2012
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
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?