Telerik Forums
UI for WinForms Forum
6 answers
127 views
Hola a todos, espero halla alguien que hable español y me pueda aclarar lo siguiente.

Necesito crear una agenda y estoy utilizando el control sheduler, pero quiero que cuando le de doble click en determinada hora no me salga el appointment que tiene por defecto sino uno que yo halla diseñado, o que por lo menos me deje editar el appointment a mis necesidades; porque la verdad no tengo idea de como se hace 

Agradezco a quien me pueda ayudar o dar una luz.
 
George
Telerik team
 answered on 14 Aug 2014
1 answer
131 views
hello,

Im generating my GanttViewDataItems per code. I will not set up a DataSet for it. Everything works fine, but I need that the item has an extra property for an extra TextViewCollumn.

I have set up my cols:

GanttViewTextViewColumn titleColumn = new GanttViewTextViewColumn("Title");
GanttViewTextViewColumn startColumn = new GanttViewTextViewColumn("Start");
GanttViewTextViewColumn endColumn = new GanttViewTextViewColumn("End");
GanttViewTextViewColumn dauerColumn = new GanttViewTextViewColumn("Progress");
GanttViewTextViewColumn myColumn = new GanttViewTextViewColumn("myValue");

titleColumn.HeaderText = "title";
startColumn.HeaderText = "title";
endColumn.HeaderText = "title";
dauerColumn.HeaderText = "title";
planmengeColumn.HeaderText = "myvalue";

this.radGanttView.GanttViewElement.Columns.Add(titleColumn);
this.radGanttView.GanttViewElement.Columns.Add(startColumn);
this.radGanttView.GanttViewElement.Columns.Add(endColumn);
this.radGanttView.GanttViewElement.Columns.Add(dauerColumn);
this.radGanttView.GanttViewElement.Columns.Add(myColumn);
 
 Then i create my Items ( I loop them outside):

GanttViewDataItem item = new GanttViewDataItem();
item.Tag = value1.ToString();
item.Start = value2.ToDateTime();
item.End = value3.ToDateTime();
item.Title = value4.ToString();
item.Progress = value5.ToInt16();

myRadObject plan = new myRadObject();
plan.myValue = 121212;
plan.SetValue(myRadObject.myProperty, plan.myValue);
item.BindProperty(myRadObject.myProperty, plan, myRadObject.myProperty, PropertyBindingOptions.OneWay); 

 I created a inner class for RadObject (myRadObject)

 internal class myRadObject : RadObject
{
public static RadProperty myProperty = RadProperty.Register("myValue", typeof(decimal), typeof(myRadObject),
new RadElementPropertyMetadata("", ElementPropertyOptions.None));

public decimal val
{
get {return (decimal)this.GetValue(myProperty); }

set { this.SetValue(myProperty, value); }
}
}

 Add to GanttView:

this.radGanttView.Items.Add(item);


 The problem is that it will not display the items in the "myValue" collumn, the rest works great!





George
Telerik team
 answered on 14 Aug 2014
0 answers
44 views
Hi,

we are looking for someone with experience in developing themes for WinForms. Based on an existing graphics styleguide, we would like to develop a theme to apply the design to approx. 20 controls. Is anyone interested in such a freelance project? (relevant experience is a must)

Thanks & regards,
Achim
Achim
Top achievements
Rank 1
 asked on 13 Aug 2014
1 answer
119 views
When we are using the color editor from the Property Grid and navigate to either the System or Web tabs, then key in a letter to jump to the first value, after the first keystroke we are ok, but every keystroke after adds text that overlaps the value in the grid where the text resides.  Please see the attached picture.

Dimitar
Telerik team
 answered on 13 Aug 2014
3 answers
186 views
I am loading a .Net assembly as a COM object in another application. When it loads, there are several forms that are created dynamically that contain various Telerik RadControls. When the assembly loads up, I receive about 30 message box alerts with the message "Telerik.WinControls.RadElement.BackgroundShape" along with a few other messages. Once I click OK on all of these message boxes, everything loads fine.

How do I get rid of these popup messages?
Stefan
Telerik team
 answered on 13 Aug 2014
1 answer
70 views
Hello,

I've recently updated to the latest version of WinConrols UI (2014.2.715.40) after realising that MasterGridViewTemplate is now MasterTemplate
It now reports that filterexpressions properties are no longer valid.

What's the best way to update the code below? It essentially saves the filters to a sql table.
Thanks

Dim feCollection As FilterExpression() = New FilterExpression(grid.MasterTemplate.FilterExpressions.Count) {}
        Dim i As Integer = 0
        While i < grid.MasterTemplate.FilterExpressions.Count
            InsertJobLibraryFilterValues(grid.Name, grid.MasterTemplate.FilterExpressions(i).PropertyName, grid.MasterTemplate.FilterExpressions(i).Operator, grid.MasterTemplate.FilterExpressions(i).Value, iFilterGroupID)
            i = i + 1
        End While

        Return feCollection




Stefan
Telerik team
 answered on 13 Aug 2014
10 answers
640 views
Hello,

There are three problems I am currently facing. Please give some ideas about this.

 First I have set the alternative color but it does not seem to be consistent i..e instead of two consecutive rows having instead color they can have same colors so Consistency is not maintained.

Second, How do I set Header Row Captions Bold?

Third, How do we change Row Selection Color and Row On mouse over color programmatically?

Thank you.
Stefan
Telerik team
 answered on 12 Aug 2014
6 answers
245 views
hi

I have a sql table with a Decimal(15,2) data type; so in sql server query result  grid it shows me all values of that column with 2 decimal plcae such as :

242.00
12.31
20.45
37.10
75.90
105.00

when I bind this table to RadGridView and creat a decimal column (without any FormatString) for that field , RadGrid shows me the same result again; is there any FormatString that force the column to hide zero decimal parts and only show real decimal part, such as :

​242
12.31
20.45
37.1
75.9
105

Thanks.
Dimitar
Telerik team
 answered on 12 Aug 2014
3 answers
127 views
Steps to reproduce
  • In a sample application I have the Rich Text Box setup and input four lines of text into the document
  • The first line I'll left justify
  • The second I'll right justify
  • Third center justify
  • And the forth left justify
  • Save the document as an RTF document
  • Re-open the document and the forth line that was supposed to be left justified is now centered justified.

Microsoft Word and Word Pad both respect the last justification.

Thoughts?

-ben
Dimitar
Telerik team
 answered on 12 Aug 2014
2 answers
401 views
Hello all, 

I am fairly new to Telerik. 
I am looking to achieve the attached design in one of my projects. So to explain, there is a collapsible panel on the left which "Collapses" and "expands" and the panel on the right adjusts its width accordingly. 
The two controls which came into my attention were radSplitContainer and radCollapsiblePanel. But I guess I cannot insert a radCollapsiblePanel inside a radSplitContainer.
Is there any way I can achieve this.

Please help. 

Cheers,
Deepak
Deepak
Top achievements
Rank 1
 answered on 12 Aug 2014
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
Bronze
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
Bronze
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?