I run RadSchedular in the different places in my project.
The first schedules the activity, the 2nd confirms or reschedules it.
The first implementation runs well the 2nd displays can find the formal.
Apparently I copied the HTML code in the first to the second cell.
Did I do it wrongly?
Hello, please open a demo page https://demos.telerik.com/aspnet-ajax/datetimepicker/overview/defaultcs.aspx?skin=Bootstrap and select Bootstrap skin.
Note that the left top & bottom corners are not rendered correctly. Most likely it's related to the "box-sizing: content-box".
I just took over an app that is using the Editor control and users are unable to indent line by line. When they try to indent to indents everything in the box. I have to go to the HTML tab and remove the <p> text</p> tags to have it indent line by line. Is there a fix for this somewhere or do we need to upgrade? It's happening with IE 11.
The Telerick.Web.UI dll we are referencing is version:
2011.1.413.35
runtime version is: v2.0.50727
I have the app rendering in IE 9 mode in IE 11, however, it's still not working correctly with the formatting pieces
Hi,
My company has a requirement to build a User Control that has 3 tabs Current, Original and Final.
Current tab will display the current content of the RadEditor including all the Track Changes information.
Original tab will display the original content of the RadEditor before changes are made (all the changes are rejected).
Final tab will display the final content of the RadEditor if all the changes are accepted.
To achieve this I have tried 2 methods.
First, I tried to use the server-side methods AcceptTrackChanges to get the content for Final and RejectTrackChanges to get the content for Original.
However, this did not work because AcceptTrackChanges and RejectTrackChanges does not accept or reject text formatting changes like Bold, Italics, etc.
The second method I tried was to use the client-side workaround suggested by http://feedback.telerik.com/Project/108/Feedback/Details/88678-when-accepttrackchanges-method-is-being-used-from-the-code-behind-inline-forma.
Unfortunately that did not work either.
Is there another way to achieve what we want?
I've been learning about CosmoDB in Azure. I've moved some data to Azure CosmoDB to test/learn with. I'm really looking for an example with CosmoDB and Web Forms with Telerik Grid control.
I'm trying to understand what Telerick controls have support for CosmoDB.
ASP.NET AJAX Grid Support CosmoDB (yes/no)?
ASP.NET MVC (yes/no)?
Does Telerik have support ASP.Net Razor Pages and can you connect to CosmoDB from Razor (yes/no).
Any links to Telerik Docs would be super helpful. I read all the docs.microsoft pages on CosmoDB.
Any samples? I searched around Telerik site but found very little info CosmoDB.
Thanks
Jason
Hi,
So far the radscheduler has proved to be a very useful asset. However I am stuck with one issue. As part of my apptemplate on the instantiation of the control I want to set the 'Appointment' with the 'data-toggle', 'data-placement' and 'title' attributes in order to use a Bootstrap 3 tooltip rather than the generic one. At runtime it ignores what I've set and sets the title as the content of the appointment.
Is there a way to do this? Or is something happening in the background which removes it. Example below. None of the 'app.Attributes' get appended.
public
void
InstantiateIn(Control container)
{
SchedulerAppointmentContainer aptCont = (SchedulerAppointmentContainer)container;
Appointment app = aptCont.Appointment;
app.Attributes.Add(
"data-toggle"
,
"tooltip"
);
app.Attributes.Add(
"data-placement"
,
"right"
);
app.Attributes.Add(
"title"
,
"Radscheduler is the best!"
);
LinkButton lbs =
new
LinkButton();
lbs.ID =
"btnConductAppointment"
;
lbs.Text =
"This is a linkbutton"
;
container.Controls.Add(lbs);
}