| using System; |
| using System.Data; |
| using System.Configuration; |
| using System.Collections; |
| using System.Web; |
| using System.Web.Security; |
| using System.Web.UI; |
| using System.Web.UI.WebControls; |
| using System.Web.UI.WebControls.WebParts; |
| using System.Web.UI.HtmlControls; |
| using System.IO; |
| using System.Collections.Specialized; |
| using System.Drawing; |
| using Telerik.WebControls; |
| public partial class UserArticleDetails : System.Web.UI.Page |
| { |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| } |
| protected void FormView1_PreRender1(object sender, EventArgs e) |
| { |
| if (this.FormView1.CurrentMode == FormViewMode.Insert) |
| { |
| //This works |
| TextBox txtName1 = this.FormView1.FindControl("txtName") as TextBox; |
| txtName1.Text = "test"; |
| //This does not work |
| TextBox radName = this.FormView1.FindControl("radTextBox1") as TextBox; |
| radName.Text = "hello"; |
| } |
| } |
Hello,
we have a complex booking system using a scheduler to control our shifts.
When we have DayView-GroupingDirection="Horizontal" we get the correct rendering, but when we have the setting to Verticaly we still get the grey/silver row on top of every grouping element.
Reading the source (wot comes out from the rendered browser result) i suspect that its some of the code that are still displaying even though it shouldn´t.
<table class="rsColumnHeaderTable" cellpadding="0" cellspacing="0" border="0">
<tr class="rsColumnHeaderRow">
<th class="rsMainHeader rsLastCell">DHL</th>
</tr>
</table>
<
telerik:RadScheduler ID="staffSchedule" runat="server" DayEndTime="00:00:00"
DayStartTime="07:00:00" TimeLabelRowSpan="1"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday"
onappointmentdelete="staffSchedule_AppointmentDelete"
onappointmentupdate="staffSchedule_AppointmentUpdate"
CustomAttributeNames="asp:Panel,table,tr,td,staff,css,diff,shiftId" HoursPanelTimeFormat="HH:mm" Height="537px"
ShowAllDayRow="False" AllowInsert="False"
StartEditingInAdvancedForm="False" EnableAdvancedForm="False" ondatabinding="staffSchedule_DataBinding"
OnClientAppointmentEditing="OnClientAppointmentEditing" AllowEdit="False"
ShowViewTabs="False" WorkDayEndTime="00:00:00"
WorkDayStartTime="07:00:00" Width="5000px" OverflowBehavior="Scroll" GroupBy="Customers"
DayView-GroupingDirection="Vertical">
<DayView WorkDayStartTime="07:00:00" WorkDayEndTime="00:00:00"
DayEndTime="00:00:00" DayStartTime="07:00:00">
</DayView>
<AppointmentTemplate>
<div class="<%# Eval("css") %>">
<%# Eval("subject") %>
</div>
</AppointmentTemplate>
</telerik:RadScheduler>
As far as i can see the "bugg" is when switching between
DayView-GroupingDirection="Horizontal" and
DayView-GroupingDirection="Vertical"

<
asp:TextBox ID="txtCity" runat="server"></asp:TextBox>
<
telerik:RadToolTip ID="RadToolTip9" runat="server" TargetControlID="txtCity"
Text="Address will be given out only to the buyer or seller" ShowEvent="OnFocus" Position="MiddleLeft"
RelativeTo="Element" Skin="Sunset" Width="100">
</telerik:RadToolTip>
Its Not work properly:
<
telerik:RadNumericTextBox ID="txtMobile" runat="server" MaxLength="9" Value="123456789">
<NumberFormat DecimalDigits="0" GroupSeparator="" />
</telerik:RadNumericTextBox>
<telerik:RadToolTip ID="RadToolTip13" runat="server" TargetControlID="txtMobile"
Text="Mobile Number will be given out only to the buyer or seller" ShowEvent="OnFocus" Position="MiddleLeft"
RelativeTo="Element" Skin="Sunset" Width="100">
</telerik:RadToolTip>
how to i show tool tip for Rad text box
regards
azees

I hope you can help me with this
Regards,InjectScriptLabel.Text =
"<script>RefreshParentPage()</" + "script>"
This works perfectly.