Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
126 views
Hi
Not sure if there is any help you can give me but here goes.

I have a scheduler which loads a number of different resources with different appointments on each resources. There can be up to 20 resources loading in the scheduler but not always. Sometimes only 4.

For a number of our clients the scheduler takes a while to load. Upto 30 seconds sometimes. Is there anyway we can speed this loading up? Some way of deferring the load of scripts or something?

Any ideas would be great
Thanks
Jon
Peter
Telerik team
 answered on 19 Feb 2010
1 answer
107 views
Hi,
     I'm having a problem with the RadScheduler, there are several columns, with the first column representing people. However when these people have nothing in the schedule for a particular week then the Scheduler becomes un-aligned. This works fine in firefox, however it I.E 8 the grid lines become offset  as you can see in the attached document.


Please help

Robert





Peter
Telerik team
 answered on 19 Feb 2010
1 answer
144 views
Hello, I have the latest FileExplorer version (trial).
I want to use a simple FileSystem explorer.
If I set the InitialPath, ViewPaths, UploadPaths, DeletePaths in code (c#), like this
--------------------------------------------------------------------------------

string

 

path = "~/Fisiere/";

 


RadFileExplorer1.Configuration.ContentProviderTypeName =

typeof(FileSystemContentProvider).AssemblyQualifiedName;

 

 

RadFileExplorer1.InitialPath = path;

RadFileExplorer1.Configuration.ViewPaths =

new string[] { path };

 

 

RadFileExplorer1.Configuration.UploadPaths =

new string[] { path };

 

 

RadFileExplorer1.Configuration.DeletePaths =

new string[] { path };

 

 

RadFileExplorer1.EnableOpenFile =

true;

 

 

RadFileExplorer1.EnableCopy =

true;

 

 

RadFileExplorer1.DisplayUpFolderItem =

true;

 

 

RadFileExplorer1.AllowPaging =

true;

 

 

RadFileExplorer1.EnableCreateNewFolder =

true;
-----------------------------------------------------------------------------------------
it doesn't work (I can't upload, delete, create folder)

but if I set these properties like this:
-----------------------------------------------------------------

 

 

 

<telerik:RadFileExplorer ID="RadFileExplorer1" Runat="server">

 

 

<Configuration ViewPaths="~/Fisiere/" UploadPaths="~/Fisiere/"

 

 

 

 DeletePaths="~/Fisiere/" /> </telerik:RadFileExplorer>

----------------------------------------------------

 

 

it works. I want to be able to set these properties in code (read from web.config)
Thank you.

 

Fiko
Telerik team
 answered on 19 Feb 2010
1 answer
98 views

Hi,

I had created Rad Slider with custom skinning. The problem is, i am not able to position slider tick items directly above the text. At present the text is positioned between two ticks. I am attaching(radslider_01.jpg) the screen shot on my requirement. Please help.

Tsvetie
Telerik team
 answered on 19 Feb 2010
1 answer
112 views

Hi,

I had created Rad Slider with custom skinning. The problem is, i am not able to position slider tick items directly above the text. At present the text is positioned between two ticks. I am attaching(radslider_01.jpg) the screen shot on my requirement. Please help.

 

Tsvetie
Telerik team
 answered on 19 Feb 2010
0 answers
100 views
how can i raise an event in asp.net  when i insert one row in sql server using triggers?.
how can i do this??? any ideas...please....

priya nallaperumal
Top achievements
Rank 1
 asked on 19 Feb 2010
12 answers
204 views
Hi! I was reading that, all images and css is included in dll. Well, i wonder, how can i add this and use it in my project? Like, image resource="something or ...."? I would like to use resources to get my icons and stuff.

Rumen
Telerik team
 answered on 19 Feb 2010
1 answer
114 views
I have a simple project where I have a TreeView in a TabStrip.  On expending node of the treeview, I add a node with the selected tab as the value.  But even if I click on a tab, on the server, the SelectedTab is always the first.

Here's my code :
Repro.aspx
<%@ Page Language="VB" AutoEventWireup="false" Inherits="Stavibel.Intranet.WebSite.Repro" 
  EnableEventValidation="false" CodeBehind="Repro.aspx.vb" %> 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!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>Page sans titre</title> 
 
</head> 
<body> 
  <form id="form1" runat="server">  
 
  <asp:ScriptManager ID="ScriptManager1" runat="server">  
  </asp:ScriptManager> 
  <div> 
    <telerik:RadTabStrip ID="tabStrip" runat="server"   
      ScrollButtonsPosition="Middle" PerTabScrolling="true" ScrollChildren="true" Width="320px" 
      AutoPostBack="false">  
    </telerik:RadTabStrip> 
    <telerik:RadTreeView ID="treeFolders" runat="server" CheckBoxes="True" TriStateCheckBoxes="false" 
      OnNodeExpand="treeFolders_NodeExpand">  
    </telerik:RadTreeView> 
    <br /> 
  </div> 
  </form> 
</body> 
</html> 
 

Repro.aspx.cs
Imports System.IO  
Imports System.Collections.Generic  
Imports System.Xml  
Imports System.Net  
Imports Telerik.Web.UI  
Imports System.Xml.Linq  
Imports System.Xml.XPath  
Imports System.Linq  
Imports System.ServiceModel  
 
Partial Class Repro  
    Inherits System.Web.UI.Page  
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load  
        If treeFolders.Nodes.Count = 0 Then  
 
            tabStrip.Tabs.Add(New RadTab("Montreal", "100"))  
            tabStrip.Tabs.Add(New RadTab("Quebec", "200"))  
 
            If tabStrip.SelectedIndex = -1 Then  
                tabStrip.SelectedIndex = 0 
            End If  
 
            FillTreeRootNodes()  
        End If  
    End Sub  
 
    Protected Sub treeFolders_NodeExpand(ByVal sender As Object, ByVal e As RadTreeNodeEventArgs)  
        e.Node.Nodes.Add(New RadTreeNode(tabStrip.SelectedTab.Text))  
    End Sub  
 
 
    Private Sub FillTreeRootNodes()  
 
        Dim xProject = New XElement("Node", _  
                                    New XAttribute("Text", "ST0001 - Project 1"), _  
                                    New XAttribute("Value", "ST0001"), _  
                                    New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _  
                                    New XAttribute("Expanded", "true"), _  
                                    New XAttribute("Project", "true") _  
                                    )  
 
        Dim xTree = New XElement("Tree", xProject)  
 
        Dim xSub = New XElement("Node", _  
                                New XAttribute("Text", "001 - Sub 1"), _  
                                New XAttribute("Value", "001"), _  
                                New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _  
                                New XAttribute("Expanded", "False"), _  
                                  New XAttribute("ExpandMode", "ServerSideCallBack"), _  
                                  New XAttribute("SubProject", "true") _  
                                )  
        xProject.Add(xSub)  
 
        xSub = New XElement("Node", _  
                                New XAttribute("Text", "002 - Sub 2"), _  
                                New XAttribute("Value", "002"), _  
                                New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _  
                                New XAttribute("Expanded", "False"), _  
                                  New XAttribute("ExpandMode", "ServerSideCallBack"), _  
                                  New XAttribute("SubProject", "true") _  
                                )  
        xProject.Add(xSub)  
 
 
        Dim test = xTree.ToString()  
 
        treeFolders.LoadXmlString(test)  
 
    End Sub  
 
End Class  
 
 

To repro:
 - Select the Quebec tab. 
 - Expand a node
 - Should add a node Quebec

This repros on Q3sp1 and 2010 Q1 beta.

UPDATE: This works fine if AutoPostBack is set to true for the tabStrip, but that's not what I want

Am I doing something wrong?
Yana
Telerik team
 answered on 19 Feb 2010
2 answers
241 views
I have been looking around and can't find the answer so now I am asking.

I am using the scheduler to set reservations and want to change the advanced edito title from "New Appointment" and "Edit Appointment" to "New Reservation" and "Edit Reservation" can anyone tell me how to do this?

Thanks
Chuck
Top achievements
Rank 1
 answered on 19 Feb 2010
1 answer
73 views

Hi there,

                I have a RadGrid of outlook style. where i have group by expression by 2 fields (Status and Count). One of the status contains about 700+ records on expanding takes about 2 min. Detailed grid contains 4 templatecolumns like Edit / Delete / Cancel / View (asp ImageButton type). If i remove these template columns grid takes about 45 sec to expand. Please suggest me a solution to improve the performance on expand/collapse

Daniel
Telerik team
 answered on 19 Feb 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?