Telerik Forums
UI for WinForms Forum
1 answer
127 views
I need to run a code when a row order is changed in GridView. How can I do this?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 11 Apr 2016
1 answer
84 views
It is possible to have heading tags on two lines?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 11 Apr 2016
1 answer
99 views

I am trying to use the sechuler to provide just reminders I dont no if i need the full blown component though as i just seen the reminder dialog component however the code is doing something weird but

 

01.private void Form1_Load(object sender, EventArgs e)
02.      {
03.          setupReminders();
04.          ApertureNetIcon.BalloonTipText = "Aperture Net Notfications.";
05.          ApertureNetIcon.BalloonTipTitle = "ApertureNet";
06.          this.WindowState = FormWindowState.Minimized;
07.      }
08. 
09.      private void Form1_Resize(object sender, EventArgs e)
10.      {
11.          if (WindowState == FormWindowState.Minimized)
12.          {
13.              ShowInTaskbar = false;
14.              ApertureNetIcon.Visible = true;
15.              ApertureNetIcon.ShowBalloonTip(1000);
16.          }
17.      }
18. 
19.      private void setupReminders()
20.      {
21.          SchedulerBindingDataSource dataSource = new SchedulerBindingDataSource();
22.          AppointmentMappingInfo appointmentMappingInfo1 = new AppointmentMappingInfo();
23.          dataSource.EventProvider.DataSource = _dal.GetAllAppointments();
24. 
25.          appointmentMappingInfo1.Description = "Subject";
26. 
27.          appointmentMappingInfo1.End = "End";
28.          appointmentMappingInfo1.Start = "Start";
29.          appointmentMappingInfo1.Reminder = "Reminder";
30.          appointmentMappingInfo1.ResourceId = "ResourceID";
31.          dataSource.EventProvider.Mapping = appointmentMappingInfo1;
32.          this.radScheduler1.DataSource = dataSource;
33.      }

This is the get all appointments

 

01./// <summary>
02./// Gets all apointments.
03./// </summary>
04./// <returns></returns>
05.public IQueryable<Appointment> getAllApointments()
06.{
07.    try
08.    {
09.        var _appointments = apertureNetEntities.Appointments.Where(f => f.isDeleted == false).OrderByDescending(o => o.TimeCode).ToList();
10.        return _appointments.AsQueryable();
11.    }
12.    catch (Exception ex)
13. 
14.    {
15.        string inner = string.Empty;
16.        if (ex.InnerException != null)
17.        {
18.            inner = ex.InnerException.ToString();
19.        }
20.        logger.Error("Error in IQueryable function getAllApointments " + ex.ToString() + " " + inner);
21.        return null;
22.    }
23.}

And if you look in my sql data and my app screen shot its not matching up to whats in the db so it is not i dont understand as displays fine in the web version ?.

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 11 Apr 2016
8 answers
4.7K+ views
Hello,

I'm trying to set the rows height for my GridView but I can't find a method...

How can I set the custom rowheight for each row?

I readed lot of thread on this forum but the properties that they use seems to not exists...

May be the forum thread are old and that they are no more valid for the 2014 telerik version...

Thanks
Ciao
Chirag
Top achievements
Rank 1
 answered on 11 Apr 2016
1 answer
258 views

Hello,

I would like to know if there is a way to add an email feature to resources.  For example, when a resource (staff) gets added to a project, is there a way to send that person an email notification that he/she has been included in a project? 

 

Also, is there a way to add staff to the resources table directly from the graphical interface?

 

Thank you in advance for your time.

Luis

Hristo
Telerik team
 answered on 08 Apr 2016
16 answers
660 views
I have a folder with shortcuts in witch I use to build my menu in the panorama control. When I break the code it shows all the shortcuts are in the control, but only the last one shows.
Hristo
Telerik team
 answered on 08 Apr 2016
1 answer
153 views
I would like to ask about a few questions:

1) What will be the effect of trail expiration on our product (local version still in development) ?
2) What is meaning of license per developer (we are targeting two 999 license per developer) ? but we can't understand how will it work in case to team members shifting or machine replacements.
Jennifer
Telerik team
 answered on 08 Apr 2016
1 answer
185 views

I test the Example, Gridview , Spreadsheet.

I miss some Excel like behaviors:

Shortcut to delete the cell content. The Del Key delete a whole row, but in Excel it clear a cell.

I see, there exists a context menu Clear Value. Can I assigne the Del Key to this action?

Can I fill down a value from a cell to the selected cells below? The Excel shortcut is Ctrl+<

Also not work: Copy one cell content to clipboard. Select many cells, paste the value to all cells in the selection.

Or enter a value to all selected cells?
In Excel select many Cells, Enter text, press Ctrl+Enter to aply for all Cells.

 

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 08 Apr 2016
10 answers
183 views
Hi, is possible to use a hierarchical grid and define custom columns groups? I've tried but the the hierarchy does not appear, i mean, the records appears in "plain" mode.

Thanks
Carlos
Top achievements
Rank 1
 answered on 08 Apr 2016
1 answer
173 views

Hi, 

   I tried to set FontSize of a RadSplitButton in the designer, or set it in the code like: this.radSplitButton1.Font = new System.Drawing.Font(...).

   But nothing changed.

   Finally I found the way which works:   

    this.radSplitButton1.DropDownButtonElement.ActionButton.Font = new System.Drawing.Font(...).

   It's so complex just to change a Font.

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 08 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)
Chart (obsolete as of Q1 2013)
Form
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
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
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
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
AI Coding Assistant
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?