Hi,
I setup a RadListView to allow the user the drag and drop to re-order the items. The scrollable items are <div> items inside of another <div> container.
If there are more items than screen, the <div> container displays a scroll bar, but when I drag an item, it does not scroll.
Is there a way to do this?
Thanks for the last reply I am not a we bit futher on I am building a custom provider list for the date times but what I have not been able to figure out is how to match dates that have already been inputed in my table i am using appointments from radsechulre i am trying to check dates in the db though that are stored in datetime values but when I try to set the custom value that you suggest here is some of my code.
On My drop down of managers I am going out to the function as so. So What i need be able to do is set a pre definined block times and intervals and two remove any time thats been saved in the db already.
1.protected void rdManagers_SelectedIndexChanged(object sender, Telerik.Web.UI.DropDownListEventArgs e)2. {3. customDatePickerProvider _timePickerValues = new customDatePickerProvider(new Guid(e.Value), Convert.ToDateTime("09:00"), Convert.ToDateTime("18:00"));4. rdStarDate.TimeView.CustomTimeValues = _timePickerValues.BuildTimeList(true, new Guid(e.Value), Convert.ToDateTime("09:00"), Convert.ToDateTime("18:00"));5. }6. 7.01.8.public D
01.public DateTime[] BuildTimeList(Boolean removeList, Guid managerID, DateTime startDate, DateTime endDate)02. {03. var q = _dal.checkDatesAvailabilty(managerID).ToList();04. if (q != null)05. {06. DateTime[] timesForPicker = new DateTime[] { new DateTime(2012, 12, 15, 12, 10, 10), new DateTime(2012, 12, 15, 5, 6, 3), new DateTime(2012, 12, 15, 3, 8, 11) };07. 08. Array.ForEach(q.ToArray(), l =>09. 10. {11. //we want to try and parse the date out of the prenset list here we going to use the date range function to create a list of dates12. });13. return timesForPicker;14. }15. return null;16. }
In addition to the above, the predefined font for almost all skins has been removed.
In some cases, these changes could result in undesired change of look and feel of the RadMenu. In order to revert back the styling of the control to its MetroTouch look from before the Q1 2016.1.225 SP1 release, one could apply the following CSS rules:html .RadMenu_MetroTouch { font-weight: 100; font-size: 16px;}html .RadMenu_MetroTouch .rmRootGroup { border-color: #25a0da; background-color: #25a0da; color: #FFF;}html .RadMenu_MetroTouch .rmRootGroup .rmItem { border-color: #51b3e1;}html .RadMenu_MetroTouch .rmRootGroup .rmRootLink { padding-top: 0px; padding-bottom: 0px; line-height: 2.125em; border: 1px solid transparent;}html .RadMenu_MetroTouch .rmRootGroup .rmRootLink:hover { background-color: transparent; color: #FFF; border-color: #92cfec;}html .RadMenu_MetroTouch .rmRootGroup .rmFocused > .rmRootLink { border: 1px solid #92cfec;}html .RadMenu_MetroTouch .rmRootGroup .rmSelected > .rmRootLink,html .RadMenu_MetroTouch .rmRootGroup .rmExpanded > .rmRootLink { border: 1px solid white;}html .RadMenu_Metro { font-size: 16px;}html .RadMenu_Metro .rmRootGroup { border-color: #25a0da; background-color: #25a0da; color: #FFF;}html .RadMenu_Metro .rmRootGroup .rmItem { border-color: #51b3e1;}html .RadMenu_Metro .rmRootGroup .rmRootLink { border: 1px solid transparent;}html .RadMenu_Metro .rmRootGroup .rmRootLink:hover { background-color: transparent; color: #FFF; border-color: #92cfec;}html .RadMenu_Metro .rmRootGroup .rmFocused > .rmRootLink { border: 1px solid #92cfec;}html .RadMenu_Metro .rmRootGroup .rmSelected > .rmRootLink,html .RadMenu_Metro .rmRootGroup .rmExpanded > .rmRootLink { border: 1px solid white;}I use RenderMode="Auto" and Skin="Bootstrap"
And i use DataSource....
Hove Change forecolor and fontsize on telerik:RadMenu?
This work with RenderMode="default", but not RenderMode="Auto"?
.RadMenu_Bootstrap .rmRootGroup .rmText {
color: red !important;
}
I have a master page with a tool tip manager:
<telerik:RadToolTipManager ID="ttm" runat="server" Enabled="true" Skin="MetroTouch" AutoTooltipify="true" EnableRoundedCorners="true" RelativeTo="Element" Position="TopCenter"></telerik:RadToolTipManager>
All but only a few controls have the Telerik tooltips applied. If I copy the RadToolTipManager and paste it into the content page everything is tool tipped as expected. What could be the reason behind this behavior?
Rober
RadGrid1.ExportSettings.Csv.ColumnDelimiter = GridCsvDelimiter.Semicolon; RadGrid1.ExportSettings.Csv.FileExtension = ".csv"; RadGrid1.ExportSettings.Csv.RowDelimiter = GridCsvDelimiter.NewLine; RadGrid1.ExportSettings.FileName = "export"; RadGrid1.ExportSettings.IgnorePaging = true; RadGrid1.ExportSettings.OpenInNewWindow = true; RadGrid1.ExportSettings.ExportOnlyData = true; void RadGrid1_ItemCommand(object source, GridCommandEventArgs e) { if (e.CommandName == RadGrid.ExportToCsvCommandName) { foreach (GridDataItem item in RadGrid1.MasterTableView.Items) { var typeCompteurs = from tc in DbContext.TypeCompteurs orderby tc.Ordre select tc; foreach (var t in typeCompteurs) { Literal lt = item[t.LibelleTypeCompteur].FindControl("ctrlAcquis_" + t.LibelleTypeCompteur) as Literal; if (lt != null) item[t.LibelleTypeCompteur].Text = lt.Text; } } RadGrid1.MasterTableView.ExportToCSV(); } }<telerik:RadAjaxLoadingPanel ID="loading_tabs" runat="server" IsSticky="true" MinDisplayTime="2000" InitialDelayTime="250"> Loading ... </telerik:RadAjaxLoadingPanel>