KaxDatePickerSharedCalendarID Property |
Gets or sets the ID of the calendar that will be used for picking dates. This
property allows you to configure several datepickers to use a single KaxCalendar
instance.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax [TypeConverterAttribute("Kettic.AspNet.Controls.Design.CalendarIdConverter")]
public virtual string SharedCalendarID { get; set; }
<TypeConverterAttribute("Kettic.AspNet.Controls.Design.CalendarIdConverter")>
Public Overridable Property SharedCalendarID As String
Get
Set
public:
[TypeConverterAttribute(L"Kettic.AspNet.Controls.Design.CalendarIdConverter")]
virtual property String^ SharedCalendarID {
String^ get ();
void set (String^ value);
}
[<TypeConverterAttribute("Kettic.AspNet.Controls.Design.CalendarIdConverter")>]
abstract SharedCalendarID : string with get, set
[<TypeConverterAttribute("Kettic.AspNet.Controls.Design.CalendarIdConverter")>]
override SharedCalendarID : string with get, set
Property Value
Type:
StringThe string ID of the KaxCalendar control if set; otherwise String.Empty.
Remarks
KaxDatePicker will look for the KaxCalendar instance in a way similar to how
ASP.NET validators work. It will not go beyond the current naming container which
means that you will not be able to configure a calendar that is inside a control in
another naming container. You can still share a calendar, but you will have to pass
a direct object reference via the
SharedCalendar
property.
See Also