Telerik Forums
UI for WinForms Forum
1 answer
64 views

Hello,

when following this example: http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx,

I have noticed that the RadCalendar1 doesnt synchronise the RadSchedular,

Really, i didnt use the same RadSchedular (witch binds with web service), i have used a datasource for binding

the mine is:

1) .ASPX

 <telerik:radscheduler runat="server" id="RadScheduler1"
                    DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataDescriptionField="Description"
                    DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentId" DataReminderField="Reminder"
                    OnAppointmentDataBound="DiaryRadScheduler_AppointmentDataBound" OnAppointmentCommand="DiaryRadScheduler_AppointmentCommand"
                    AllowDelete="false" AllowEdit="false" AllowInsert="false" EnableDescriptionField="true"
                    EnableRecurrenceSupport="false" EnableResourceEditing="false" EnableExactTimeRendering="false"
                    DayStartTime="08:00:00" DayEndTime="20:00:00" WorkDayStartTime="09:00:00" WorkDayEndTime="18:00:00"
                    WeekView-DayStartTime="08:00:00" WeekView-DayEndTime="20:00:00" WeekView-WorkDayStartTime="09:00:00" WeekView-WorkDayEndTime="18:00:00" WeekView-EnableExactTimeRendering="true"
                    MultiDayView-DayStartTime="08:00:00" MultiDayView-DayEndTime="20:00:00" MultiDayView-WorkDayStartTime="09:00:00" MultiDayView-WorkDayEndTime="20:00:00" MultiDayView-NumberOfDays="5" MultiDayView-EnableExactTimeRendering="true"
                    AppointmentStyleMode="Auto" SelectedView="AgendaView"
                    StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true"
                    ShowHeader="true" ShowFooter="true" ShowAllDayRow="false" ShowDateHeaders="true" ShowFullTime="false" OverflowBehavior="Expand"
                    RowHeight="25px" RowHeaderWidth="50px" MinutesPerRow="30" TimeLabelRowSpan="2"
                    FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" HoursPanelTimeFormat="HH:mm tt">
                    <DayView HeaderDateFormat="d" UserSelectable="true" />
                    <WeekView HeaderDateFormat="d" UserSelectable="true" />
                    <MonthView HeaderDateFormat="d" UserSelectable="true" />
                    <AgendaView HeaderDateFormat="d" UserSelectable="true" />
                    <TimelineView UserSelectable="false" />
                    <MultiDayView UserSelectable="false" />
                    <AdvancedForm Modal="true" />
                    <AppointmentTemplate>
                        <%# Container.Appointment.Resources.GetResourceByType("Type").Text%><br /><%# Eval("Subject") %><br /><%# Eval("Description") %>
                        <div>
                            <asp:Button runat="server" ID="BtnExport" CssClass="rsExportButton" ToolTip="Export to iCalendar" CommandName="Export" OnClientClick="Export(this, event); return false;" style="border: none; cursor: pointer;" />
                        </div>
                    </AppointmentTemplate>
                </telerik:radscheduler>

2) .CS

RadScheduler1.DataSource = DataSourceRadSchedular;

 

Any suggestion please?

 

Hristo
Telerik team
 answered on 18 Apr 2016
1 answer
159 views

Hi,

I am trying to build a RadDocument from many input RadDocuments (to put together many small documents). Many of these smaller documents have numbered lists whose numbering should be preserved. To insert each of the small documents, I am using
     richTextEditorToInsertInto.DocumentEditor.InsertFragment(new DocumentFragment(radDocumentToAppend))

When put together in the bigger document the numbering continues to increase, e.g., if

Document_1 contains:      and       Document_2 contains:
  DOC1_Header                               DOC2_Header
      1.  Doc1_Item1                               1.  Doc2_Item1
      2.  Doc1_Item2                               2.  Doc2_Item2
      3.  Doc2_Item3                               3.  Doc2_Item3
When put together, the resulting document contains
    DOC1_Header 
      1.  Doc1_Item1
      2.  Doc1_Item2
      3.  Doc2_Item3
    DOC2_Header
      4.  Doc2_Item1
      5.  Doc2_Item2
      6.  Doc2_Item3

Is there a way of resetting the start index for list numbering to 1? How can i keep the numbering from the original documents?

Thanks,

Shahrzade.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Apr 2016
3 answers
167 views

How can I change the font of DropDownList items?

How can I change focused color of DropDownList?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Apr 2016
2 answers
241 views

I have a Scheduler instance in TimeLine view using Resource grouping. I would like to take a radDropdownlist control and give the user the ability to filter the scheduler to just resources he/she is responsible for on the scheduler. Has anyone be able to filter the resources in Scheduler?

 

Thanks,

 

TomG

Tom Graham
Top achievements
Rank 1
 answered on 16 Apr 2016
5 answers
164 views

Hello,

I want to make a custom GridView  to fit a specific requirement. So I  changed the ViewDefinition to ColumnGroups View and I got the format I want. It is shown like picture "question.JPG".

 

But the header looks strange ...

1.How can I do to resize the height of header and  resize the height of filter row? 

2.If I want to hide the second row of header and the third row of header , how to do that?

 

Thanks and regards,

Jaspy

2016/04/14

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 15 Apr 2016
1 answer
202 views

A lot of PDF documents (often but not always scanned ones) come out looking very bizarre in the PDFViewer (see attached). I have confirmed that the documents themselves are fine, as they look normal in other PDF viewers. The distortion is not dependent on PDF version or size. Is this a known issue? What's causing it?

Dimitar
Telerik team
 answered on 15 Apr 2016
4 answers
149 views

Hi

I have changed a heading-style in a RadDocument. I also want that the letters in the header be in upper case, i.e., HEADER instead of Header. How can it be done?

thanks,

Shahrzade.

Shahrzade
Top achievements
Rank 1
 answered on 15 Apr 2016
2 answers
139 views

Hi,

I have a RadRichTextEdior, the user selects a piece of text and wants to highlight it with a chosen color , e.g., by clicking on a button. How can I do it programatically? How can I get hold of the selected text (its start and its end)?

Is there anything like ChangeParagraphBackgroundColorCommand for  selected text?

 

Thanks,

 

Shahrzade.

Shahrzade
Top achievements
Rank 1
 answered on 15 Apr 2016
7 answers
125 views

Hello,

I use a hierarchical grid in my application. The grid has a master level and a child level.

I like the integrated search function of the grid and want to use it in my project.

I have a problem when I use the UseScrollbarsInHierarchy feature of the grid.

When I set it to False the search function works fine which means the table scrolls to each search hit (child and master hit alike) when the arrow buttons next to the search field are used.

When I set it to True (desired option because the child level can have several hundred rows) the grid does not scroll to the search hits anymore.

How can I achieve that the master scrollbar scrolls to the search hit and the child scroll bar too?

I tried using Databinding / Object Relational Mode / Load On Demand with the same result as described above.

 

I use the latest version of the UI for WinForms with .NET 3.0 (Unfortunately the highest version of target System).

 

Thanks for your help.

Regard

Ingo

 

LIMA Factory
Top achievements
Rank 1
 answered on 14 Apr 2016
5 answers
463 views

Hello,

I'm trying to cancel the RadGridView's FilterChanging event after the user enters text into the filtering row, but doing so does not undo any additional text that the user may have added to the filtering row. I have tried the following lines of code but neither worked (and I discovered the Value property does not match the RadGridView's filtering row text - it matches the actual value of the filter):

radGridView1.FilterDescriptors[0].Value = oldValue;
radGridView1.MasterView.TableFilteringRow.Cells[0].Value = oldValue;

How can I set the filtering row text back to its original value?

Thank you!

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 14 Apr 2016
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
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
ShapedForm
SyntaxEditor
Wizard
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
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
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
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?