CustomRadFilterDropDownEditorPure tmp_drop_down_field = new CustomRadFilterDropDownEditorPure();tmp_drop_down_field.ToolTip = some_variable_with_text;<telerik:RadFilter Skin="WebBlue" Width="100%" ID="RadFilter1" runat="server" ShowApplyButton="false"AllowFilterOnBlur="True" OnPreRender="RadFilter1_PreRender"OnFieldEditorCreating="RadFilter1_FieldEditorCreating" CssClass="RadFilter RadFilter_WebBlue" Culture="de-DE" ExpressionPreviewPosition="None" Visible="true"></telerik:RadFilter>If you go to the RadScheduler Web Service demo on the Telerik website, one of the things that you will be able to observe is the Height of each appointment "node" that appears within the scheduler. Obviously, the Height of each appointment represents the start time / end time of the specific appointment. For example, the Height of the Strategic Planning appointment for Monday the 30th visually depicts a start time / end time of 10am - 11am. Compare this, for example, to the Height of the all day appointments listed for Thursday the 2nd.
In the upper-right of the scheduler are the different views (Day, Week, Month, Timeline). This demo defaults to Week view. If you click Timeline to change the view, notice that the start and end times are no longer included in this view, and all of the appointment "nodes" have the same Height.
Is there a way to specify or change the Height of the appointment nodes that appear in Timeline view?
Thank you,
Steven

<td align="right" height="30"> <telerik:RadButton ID="RadButton3" runat="server" ButtonType="LinkButton" OnClick="orderupdate_Click" PressedCssClass="buttonpressed" HoveredCssClass="buttonpressed"> </telerik:RadButton> </td>.buttonpressed { background-color: #000000 !important; }<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <telerik:RadAjaxManager ID="RadAjaxManager2" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnSubmit"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="Panel1" UpdatePanelCssClass="" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server"> </telerik:RadAjaxLoadingPanel> <telerik:RadFormDecorator id="FormDecorator1" runat="server" DecoratedControls="All" Skin="Metro"></telerik:RadFormDecorator> <asp:Panel runat="server" ID="Panel1"> <table> <tr> <td class="auto-style5"> <label>Father's Name:</label> </td> <td style="width:100px"> <telerik:RadTextBox ID="txtFathersName" Runat="server" EmptyMessage="Father's Name" LabelWidth="64px" Resize="None" Width="160px" DisabledStyle-BackColor="Silver"> </telerik:RadTextBox> </td> <td><asp:CustomValidator runat="server" ID="CustomFieldValidator1" ControlToValidate="txtFathersName" ClientValidationFunction="RequiredIfPhysical" ErrorMessage="<img src='images/Exclamation.png' Title='Required Field'/>" ValidateEmptyText="True" Display="Dynamic" ></asp:CustomValidator> </td> </tr> <tr> <td class="auto-style5"> <label>City:</label> </td> <td class="auto-style6"> <telerik:RadTextBox ID="txtCity" Runat="server" EmptyMessage="City" LabelWidth="64px" Resize="None" Width="160px" Wrap="False" CausesValidation="False"> </telerik:RadTextBox> </td> <td><asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="txtCity" runat="server" ErrorMessage="<img src='images/Exclamation.png' Title='Required Field'/>" Display="Dynamic" ></asp:RequiredFieldValidator></td> </tr> </table> </asp:Panel>
Further below there is also the javascript validator:
<telerik:RadCodeBlock ID="RadCodeBlock2" runat="server">
<script type="text/javascript">
function RequiredIfPhysical(sender, args) {
var chkBoxPhysical = $find("<%=rdBtnPhysical.ClientID%>");
chkBoxPhysical = $telerik.toButton(chkBoxPhysical);
if (chkBoxPhysical.get_checked()) {
if (args.Value == "") {
args.IsValid = false;
}
else {
args.IsValid = true;
}
} else {
args.IsValid = true;
}
}
</script>
</telerik:RadCodeBlock>