Since last Chrome update version 58 we have visual bugs in ours RadWindow. We found out that it was because of that css class :
html:first-child .RadWindow ul {
float: right;
border: 1px solid transparent;
}
It is automatically included in the Telerik.Web.UI.WebResource.axd comming from Telerik.Web.UI.Skins.Window.css. We first tough that it was a Chrome bug, but after investigating a little bit more, we realized that chrome was proccessing that css class like it is supposed to. We also found out that firefox is also processing that class the same way as Chrome do. Is there a way to remove that css?
thanks
Hi friends,
I want to create a menu like following link in server side. that's great menu style.
http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/templates/defaultcs.aspx
I made a research and there are tons on questions about how to achieve it most of them answered by telerik team "partially" yet there's no complete answer.
I wonder is there a reason why a complete simple answer for creating the menu at above link never exists ? questions and answers are still there since 2012 and no complete example ?
came on guys, can you please provide official code that works on server side and generates a menu at link above ? no need complex application scenarios or anything. obviously people still need it.
Also the reason we buy telerik products is simplify our tasks.
Please can you solve my problem. obviously I don't want my programmers to spent more time on discovering telerik menu item. (by the way its great item:)
best.
Hi,
On Telerik RT version v4.0.30319 the ul & li formatting isnt working on the recurrence editor of a radScheduler - please see attached pic.
Please can someone offer some css ideas to format the opt boxes to the left of the labels? This is driving me mad.
Thanks so much,
CB.
Hello ,
Can any body help me with the below design in telerik using LinearGauge Horizontal ..
Please reply asap..Thanks.
Hello I am using RadProgress bar of chunk type,
When the chunkCount = 3 it generates incorrect width style for completed steps, it uses the comma instead of the dot so 33,33334% instead of 33.33334%.
So that it is not working as expected.
version: Telerik_UI_for_ASP.NET_AJAX_2016_2_607_Dev
code behind:
rpb_reviewMail.MaxValue = dataTable.Rows.Count;
rpb_reviewMail.ChunksCount = dataTable.Rows.Count;
rpb_reviewMail.Value = currentStep;
aspx:
<telerik:RadAjaxPanel runat="server">
<telerik:RadProgressBar RenderMode="Lightweight" runat="server" BarType="Chunk" Skin="MetroTouch" MinValue="0" Width="100%">
</telerik:RadProgressBar>
</telerik:RadAjaxPanel>
When I add RadGrid, the web appears the error message when I switch webpages on my ipad mini : safari error a problem occurred with this webpage so it was reloaded. But android device(SAM SUNG Galaxy Tab4) is all right. Does somebody know how to solve this problem?
I'm evaluating the RadGantt control for an eventual purshase. I have been able to insert and update tasks but there is a problem with deleting a task. The event OnTaskDelete is not fired unless there is only one task left or I have clicked delete on all tasks. So, if I click to delete only one task and there are more than one task, the confirmation window is showed but the OnTaskDelete event is not fired at all, and the task is not deleted. Is it a know bug? Here's my code:
<telerik:RadGantt ID="RadGantt1" runat="server" AllowTaskDelete="true" RenderMode="Lightweight" DataSourceID="SqlDataSource1" DependenciesDataSourceID="SqlDataSource2" OnTaskInsert="RadGantt1_TaskInsert" OnTaskUpdate="RadGantt1_TaskUpdate" OnTaskDelete="RadGantt1_TaskDelete" OnDependencyDelete="RadGantt1_DependencyDelete" OnDependencyInsert="RadGantt1_DependencyInsert"> <DataBindings> <TasksDataBindings IdField="ID" ParentIdField="ParentID" StartField="Start" EndField="End" TitleField="Title" PercentCompleteField="PercentComplete" SummaryField="Summary" ExpandedField="Expanded"/> <DependenciesDataBindings TypeField="Type" IdField="ID" PredecessorIdField="PredecessorID" SuccessorIdField="SuccessorID" /> </DataBindings> </telerik:RadGantt> <asp:SqlDataSource runat="server" ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:LocalSqlServer %>" DeleteCommand="DELETE FROM [GanttTasks] WHERE [ID] = @ID" InsertCommand="INSERT INTO [GanttTasks] ([ParentID], [OrderID], [Title], [Start], [End], [PercentComplete], [Expanded], [Summary]) VALUES (@ParentID, @OrderID, @Title, @Start, @End, @PercentComplete, @Expanded, @Summary)" SelectCommand="SELECT * FROM [GanttTasks] WHERE [ORderID] != -1" UpdateCommand="UPDATE [GanttTasks] SET [ParentID] = @ParentID, [OrderID] = @OrderID, [Title] = @Title, [Start] = @Start, [End] = @End, [PercentComplete] = @PercentComplete, [Expanded] = @Expanded, [Summary] = @Summary WHERE [ID] = @ID"> <DeleteParameters> <asp:Parameter Name="ID" Type="Int32" /> </DeleteParameters> <InsertParameters> <asp:Parameter Name="ParentID" Type="Int32" /> <asp:Parameter Name="OrderID" Type="Int32" /> <asp:Parameter Name="Title" Type="String" /> <asp:Parameter Name="Start" Type="DateTime" /> <asp:Parameter Name="End" Type="DateTime" /> <asp:Parameter Name="PercentComplete" Type="Decimal" /> <asp:Parameter Name="Expanded" Type="Boolean" /> <asp:Parameter Name="Summary" Type="Boolean" /> </InsertParameters> <UpdateParameters> <asp:Parameter Name="ParentID" Type="Int32" /> <asp:Parameter Name="OrderID" Type="Int32" /> <asp:Parameter Name="Title" Type="String" /> <asp:Parameter Name="Start" Type="DateTime" /> <asp:Parameter Name="End" Type="DateTime" /> <asp:Parameter Name="PercentComplete" Type="Decimal" /> <asp:Parameter Name="Expanded" Type="Boolean" /> <asp:Parameter Name="Summary" Type="Boolean" /> <asp:Parameter Name="ID" Type="Int32" /> </UpdateParameters> </asp:SqlDataSource>protected void RadGantt1_TaskInsert(object sender, Telerik.Web.UI.Gantt.TaskEventArgs e) { Telerik.Web.UI.Gantt.Task nouvelTache = (Telerik.Web.UI.Gantt.Task)e.Tasks.FirstOrDefault(); if (nouvelTache.ParentID != null) SqlDataSource1.InsertParameters["ParentID"].DefaultValue = nouvelTache.ParentID.ToString(); SqlDataSource1.InsertParameters["OrderID"].DefaultValue = nouvelTache.OrderID.ToString(); SqlDataSource1.InsertParameters["Title"].DefaultValue = nouvelTache.Title; SqlDataSource1.InsertParameters["Start"].DefaultValue = nouvelTache.Start.ToString(); SqlDataSource1.InsertParameters["End"].DefaultValue = nouvelTache.End.ToString(); SqlDataSource1.InsertParameters["PercentComplete"].DefaultValue = nouvelTache.PercentComplete.ToString(); SqlDataSource1.InsertParameters["Expanded"].DefaultValue = nouvelTache.Expanded.ToString(); SqlDataSource1.InsertParameters["Summary"].DefaultValue = nouvelTache.Summary.ToString(); } protected void RadGantt1_TaskUpdate(object sender, Telerik.Web.UI.Gantt.TaskEventArgs e) { Telerik.Web.UI.Gantt.Task tacheModifiee = (Telerik.Web.UI.Gantt.Task)e.Tasks.FirstOrDefault(); SqlDataSource1.UpdateParameters["OrderID"].DefaultValue = tacheModifiee.OrderID == null ? "0" : tacheModifiee.OrderID.ToString(); SqlDataSource1.UpdateParameters["Title"].DefaultValue = tacheModifiee.Title; SqlDataSource1.UpdateParameters["Start"].DefaultValue = tacheModifiee.Start.ToString(); SqlDataSource1.UpdateParameters["End"].DefaultValue = tacheModifiee.End.ToString(); SqlDataSource1.UpdateParameters["PercentComplete"].DefaultValue = tacheModifiee.PercentComplete.ToString(); SqlDataSource1.UpdateParameters["Expanded"].DefaultValue = tacheModifiee.Expanded.ToString(); SqlDataSource1.UpdateParameters["Summary"].DefaultValue = tacheModifiee.Summary.ToString(); } protected void RadGantt1_TaskDelete(object sender, Telerik.Web.UI.Gantt.TaskEventArgs e) { foreach (Telerik.Web.UI.Gantt.Task tacheSuprimmee in e.Tasks) { SqlDataSource1.DeleteParameters["ID"].DefaultValue = tacheSuprimmee.ID.ToString(); SqlDataSource1.Delete(); } }
Hello,
I recently upgraded one of our ASP.NET 4 applications from Q2 2014 to the latest 2017 and noticed that the background for the scale changed from gray to white (see attached) and I have not been able to find a way to change it back. I looked within the Telerik demos and found that I'm able to change the BackColor, but it changes it for the entire RadLinearGauge tag. Is there any way to accomplish this?
<telerik:RadLinearGauge ID="radInstalledFE" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="10pt" Skin="Office2010Black" Width="420px" ForeColor="Black" Height="90px"> <Pointer Shape="BarIndicator" Value="15" Size="30" Color="#5ca038"> <Track Opacity="0.2" Size="30" Color="Black" /> </Pointer> <Scale MajorTicks-Size="10" MinorTicks-Size="5" Vertical="False" MinorTicks-Color="Black" MajorTicks-Color="Black" Labels-Color="Black" Labels-Font="Verdana" Labels-Position="Outside" MinorTicks-Visible="False"></Scale> </telerik:RadLinearGauge>