Hi,
I am using RadScheduler in my project to display events. I have to display two events per day in month view and I have set VisibleAppointmentsPerDay property to 2 for the same. Now if any day in month has more than two events then it should show it in format +<No. of additional events> more.
e.g. +2more.
RadScheduler has property called ShowMore, but all the days in month shared this property i.e, if I set this property then the text is same accross all the days in month. Is there any way to customize this property, so that it should show different text for different days in month?
Thanks...
| <telerik:RadTimePicker ID="tpPreFirstSurvey" runat="server" /> |
| <telerik:DateInputSetting BehaviorID="DateInputBehavior3" DateFormat="hh:mm" Validation-IsRequired="true" > |
| <TargetControls> |
| <telerik:TargetInput ControlID="tpPreFirstSurvey" /> |
| </TargetControls> |
| </telerik:DateInputSetting> |

Good afternoon All,
I'm implementing a RadNumericTextbox for a timesheet entry page where the users are required to enter their time in half hour increments.
I've tried attaching a RegularExpressionValidator to the control which has it's ValidationExpression set to "^\d+\.[05]$".
I would expect an error on anything not ending with a 0 or 5. I can't get this to accept an entry ending in a 0 (like 1.0 or 3.0). It accepts entries ending in .5, as expected.
If I set the ValidationExpression to "^\d+\.[12]$", it catches anything that doesn't end with a 1 or 2 - as I would expect.
Is there something about an entry ending in 0?
Here's the aspx for the Textbox
<telerik:RadNumericTextBox ID="numtxtMonday" runat="server"
ButtonsPosition="Right"
EnabledStyle-HorizontalAlign="right"
IncrementSettings-Step="0.5"
InvalidStyle-ForeColor="red"
MaxValue="24" MinValue="0"
NumberFormat-DecimalSeparator="."
NumberFormat-DecimalDigits="1" NumberFormat-GroupSeparator=""
NumberFormat-AllowRounding="true"
ShowSpinButtons="true" Type="Number" ValidationGroup="saveTime"
Width="75px" Value="0.0" >
</telerik:RadNumericTextBox>
thanks!
Sheryl
