KaxDateTimePickerSharedTimeViewID Property |
Gets or sets the ID of the timeview that will be used for picking time. This
property allows you to configure several datetimepickers to use a single KaxTimeView
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.TimeViewIdConverter")]
public virtual string SharedTimeViewID { get; set; }
<TypeConverterAttribute("Kettic.AspNet.Controls.Design.TimeViewIdConverter")>
Public Overridable Property SharedTimeViewID As String
Get
Set
public:
[TypeConverterAttribute(L"Kettic.AspNet.Controls.Design.TimeViewIdConverter")]
virtual property String^ SharedTimeViewID {
String^ get ();
void set (String^ value);
}
[<TypeConverterAttribute("Kettic.AspNet.Controls.Design.TimeViewIdConverter")>]
abstract SharedTimeViewID : string with get, set
[<TypeConverterAttribute("Kettic.AspNet.Controls.Design.TimeViewIdConverter")>]
override SharedTimeViewID : string with get, set
Property Value
Type:
StringThe string ID of the KaxTimeView if set; otherwise String.Empty.
Remarks
KaxDateTimePicker will look for the KaxTimeView 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 timeview that is inside a control in
another naming container. You can still share a timeview, but you will have to pass
a direct object reference via the
SharedTimeView
property.
See Also