or
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm47.aspx.cs" Inherits="fTest.WebForm47" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <telerik:RadSplitter ID="RadSplitter1" runat="server" Height="100%" Width="100%" BorderSize="0" PanesBorderSize="0" Skin="Office2010Silver"> <telerik:RadPane runat="server" ID="RadPane1" Width="350px" MaxWidth="350"> abc </telerik:RadPane> <telerik:RadSplitBar runat="server" ID="RadSplitbar1" CollapseMode="Forward" ResizeStep="50" /> <telerik:RadPane runat="server" ID="RadPane2" Width="350px" MaxWidth="350"> cde </telerik:RadPane> </telerik:RadSplitter> </div> </form></body></html>public void ConfigureExport() { radgrdResultDetail.ExportSettings.ExportOnlyData = true; radgrdResultDetail.ExportSettings.IgnorePaging = false; radgrdResultDetail.ExportSettings.OpenInNewWindow = false; } protected void xlsExport_Click(object sender, EventArgs e) { ConfigureExport(); radgrdResultDetail.MasterTableView.ExportToCSV(); } protected void csvExport_Click(object sender, EventArgs e) { ConfigureExport(); radgrdResultDetail.MasterTableView.ExportToExcel(); }RepeatColumns
="4" RepeatDirection="Vertical" AlignRows="false"
The problem is level 1 has uneven items, ideally I want each rows filled as close as possible to the maximum height before moving to the next column, whats is happening is its trying to create and even number of rows resulting in lots of empty spaces at the bottom. Is there a way to turn this off.
Is it possible to create a list of resources for each individual day, regardless of the view?
<%If Request.Url.AbsoluteUri.ToLower().Contains("site1url/login") Then%><link href="site1url/Css/style.css" rel="stylesheet" type="text/css" /><%Else%><link href="site2url/Css/style.css" rel="stylesheet" type="text/css" /><%End If%> <div class="TopBar"><label class="FloatRight TopBarPageTitle CursorArrow"><h1>File Manager</h1></label></div> <div class="ControlWrapper"> <div class="tabStripContainer"> <telerik:RadTabStrip ID="Radtabstrip1" runat="server" Width="100%" MultiPageID="MultiPage1" SelectedIndex="0" TextOnlyTabs="False" EnableEmbeddedSkins="False" Skin="CustSkin"> <Tabs> <telerik:RadTab ToolTip="Image Manager" Text="Image Manager" PageViewID="Page3"></telerik:RadTab> <telerik:RadTab ToolTip="Document Manager" Text="Document Manager" PageViewID="Page1"></telerik:RadTab> </Tabs> </telerik:RadTabStrip> <div class="SubSectionWithBorder"> <telerik:RadMultiPage ID="MultiPage1" runat="server" Width="100%" SelectedIndex="0"> <telerik:RadPageView ID="Page3" runat="server"> <fieldset> <legend><h2>Image Manager</h2></legend> <telerik:RadFileExplorer ID="imageExplorer" TreePaneWidth="200px" Width="100%" height="500px" runat="Server" EnableOpenFile="false" AllowPaging="true" PageSize="15" BorderWidth="1" BorderColor="Gray"> </telerik:RadFileExplorer> </fieldset> </telerik:RadPageView> </telerik:RadMultiPage> </div> </div></div>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load docExplorer.Configuration.ViewPaths = New String() {path1} docExplorer.Configuration.UploadPaths = New String() {path1} docExplorer.Configuration.DeletePaths = New String() {path1} docExplorer.Configuration.SearchPatterns = New String() {"*.doc", "*.txt", "*.docx", "*.xls", "*.xlsx", "*.pdf", "*.zip"} docExplorer.Configuration.MaxUploadFileSize = 5120000End Sub