Telerik Forums
UI for WinForms Forum
3 answers
314 views
Hi,
I am trying to trigger the event click on a splitter.
I tried with this code:

AddHandler RadSplitContainer1.Splitters(0).Click, AddressOf SplitterClick

But nothing happens.
Do you have any advice?


I'm using RadControls 2013Q3.
Thanks
Stefan
Telerik team
 answered on 21 Dec 2013
4 answers
293 views
Hello,

How can I get the list of all the event handlers (delegates) associated with the Click event on a RadTileElement in Panorama control using reflection?

I should implement a proxy class that add or remove handlers on Click event.

Something like this:

private event EventHandler _eventProxy;
...
var _handlers = GetEventHandlers(radTileElement, "Click");
foreach (var handler in _handlers)
{
  _eventProxy += (EventHandler)handler;
}

I could do it with normal Controls but not with RadTileElement in Panorama.

Thank you in advance,

Raniere
Ivan Petrov
Telerik team
 answered on 20 Dec 2013
3 answers
696 views
Me again. I am attempting to get the text to word wrap, but with no success.

I have a RadPanel with a RadLabel on it. 
the label text will look something like this:

"<html> <p> Mike Wheat of Fairbanks has put the 1940 comic book on the auction block through Dallas-based Heritage Auction Galleries, where it's expected to fetch more than $40,000. Online bids already have climbed to $35,000 for the book, believed to be one of fewer than 300 still in existence.</p>"

obviously the content of the text is random (ignore that). 
basically  i have a html string with a date,title,and context. 
I would like the label to wordwrap the label.
currently the label stretches out in one long line.(see screenie) 
Peter
Telerik team
 answered on 20 Dec 2013
1 answer
116 views
HELLO HOW TO SAVE THE DESIGN CONTROL IN SQL PIVOTGRID
Stefan
Telerik team
 answered on 20 Dec 2013
1 answer
173 views
Hi,
quite imbarazing to write this question but I have not found references in the documentation.
in gridview there are settings to make insert, delete, update working or do I have to write the methods?
thanks
Stefan
Telerik team
 answered on 20 Dec 2013
1 answer
93 views
Hi All!

We have some grid with GridViewDateTimeColumns, the display format is {0:d} - short date pattern, in our case it means yyyy.MM.dd., e.g. 2013.12.18 as today.

When a user would like to record a new date, e.g. 2014.01.01, he/she must press the following keys: 2014<right arrow>01<right arrow>01. The right arrow needs to move to the next parts, month and day.

Can I change this behavior, and achieve a kind of fast or continuous editing? means, the user should press only the numeric keys, and the editor automatically moves the cursor to the next part of the date without pressing the right arrow?!

regards,

Peter Szintai
Stefan
Telerik team
 answered on 20 Dec 2013
1 answer
167 views
Hi,
I'm trying to go through the tutorial and work through the basics of telerik winForms. Its asks me to choose radForm from tools box, but all the controls of rad are available except the radForm. I'm using Visual Studio 2010 express edition and i've added the components manually.
It would be great if some one helps me here!

Thank You.
Ralitsa
Telerik team
 answered on 20 Dec 2013
3 answers
117 views
Hi,
I have some problem with RadSpinEditor in GridView. When I'm scrolling GrdView, spineditor changing position
Code:
private IList<Attribute> _data = new List<Attribute>();
private void bwLoadData_RunWorkerCompleted(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)
        {
            this.grvAttribute1.DataSource = _data;
            this.grvAttribute1.CellFormatting += insertControls;
        }
Attribute attribute = new Attribute();
 private void insertControls(object sender, CellFormattingEventArgs e)
        {
            try
            {
                if (e.Column.Name == "Type")
                {
                    if (attribute.Type == 3)
                    {
                        if (e.CellElement.Children.Count == 0)
                        {
 
                            RadSpinEditor se = new RadSpinEditor();
                            se.Dock = DockStyle.Fill;
                            se.ShowUpDownButtons = false;
                            se.ThemeName = "TelerikMetro";
                            se.TextAlignment = HorizontalAlignment.Center;
                            se.DecimalPlaces = 2;
                            se.Minimum = -999999.99M;
                            se.Maximum = 999999.99M;
                            Telerik.WinControls.RadHostItem i = new Telerik.WinControls.RadHostItem(se);
                            e.CellElement.Children.Add(i);                           
                        }
 
                    }
                     
                }
            }
            catch (Exception ex)
            {
      //message
            }
        }
It's bug in my code or in control implementation?
Please help me.
George
Telerik team
 answered on 20 Dec 2013
2 answers
1.9K+ views
I am going mad with this. I can do it in gridview but I am battling to get it done in radGridView.

These lines are from a grid view in a winform that I should replace with a radGrid:

private void DataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
       {
           var location = Convert.ToString(dataGridView1[e.ColumnIndex, e.RowIndex].Value);
 
           if (dataGridView1.Columns[e.ColumnIndex] is DataGridViewLinkColumn)
 
               if (e.ColumnIndex == 4)
                   Process.Start(location);
 
               else if (e.ColumnIndex == 5)
               {
                   int i = dataGridView1.CurrentCell.RowIndex;
Basically I simply ned to get the content of the cell where I perform the mouse click. How you do the equivalent of the above using a radGrid?
Dimitar
Telerik team
 answered on 19 Dec 2013
15 answers
538 views
Hi,
I am a telerik user and I used many controls from telerik.
But I don't know how to create Bubble Bar, and need to add Reference (Telerik.Examples dll file)
So how can I get this.

Thank You
Dumpling
:)
Ivan Petrov
Telerik team
 answered on 19 Dec 2013
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
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
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?