Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
125 views
Hi All,

I just got zip of Latest Version: 2010.1 415 (Apr 15, 2010).

What do I do different than when installing using the MSI?

Do I just copy it a folder and run the toolbox installer?

Thanks
Matt
Daniel
Telerik team
 answered on 15 Apr 2010
8 answers
297 views
when I try to open the exported pdf file, it prompts me to type in the password.

I don't think I have set the password anywhere. 
Should it be local setting problems?
Daniel
Telerik team
 answered on 15 Apr 2010
1 answer
128 views

Hi,

We are binding the dataset to grid whose columns are auto generated (AutoGenerateColumns="true")

Column data format string can be either "$" or "%" which is depedent on combo selection format string is bound on column created event.

Initally data is shown with "%", changed the combo selection "$" on click of button format string is not changed to "$".

protected void radMainGrid_ColumnCreated(object sender, Telerik.Web.UI.GridColumnCreatedEventArgs e)  
        {  
            if (e.Column is GridBoundColumn)  
            {  
                GridBoundColumn boundColumn = e.Column as GridBoundColumn;  
                if (boundColumn.DataField.Equals("Name"))  
                {  
                    if(radView.SelectedValue != "0")  
                        boundColumn.FooterText = "Grand Total";  
                }  
                else if(!boundColumn.DataField.Equals("ID"))  
                {  
                    if (radView.SelectedValue != "0")  
                    {  
                        boundColumn.Aggregate = GridAggregateFunction.Sum;  
                        boundColumn.DataFormatString = "{0:C0}";  
                    }  
                    else  
                    {  
                        boundColumn.DataFormatString = "{0:P0}";  
                    }  
                }  
            }  
        }  
 

Please help me to resolve this issue.

Thanks, Mulagundla

Please help me to resolve this issue.Thanks, Mulagundla
Daniel
Telerik team
 answered on 15 Apr 2010
1 answer
165 views
Hi,

I was using free telerik version 2009  in my project and recently purchased telerik version 2010. I did not change any web.config setting and it was working fine on my local machine.
But  on the server it is giving me following error in we. config

Parser Error Message: Could not load file or assembly 'Telerik.Web.Design, Version=2009.3.1314.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

on the following line

<add assembly="Telerik.Web.Design, Version=2009.3.1314.20, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/>

wht all changes I need to make in web.config file.(FYI: I'm using .net 3.5 frame work)

Thanks.
Daniel
Telerik team
 answered on 15 Apr 2010
1 answer
120 views
I am using RadWindow as a security challenge when users attempt to access premium content links within the site without being first logged in.  Once the user logs in, they will be redirected to the appropriate page.  One requirement is that the user be able to close the modal dialog and go back to previewing the site.  The problem is that I don't want the RadWindow to force the parent page to reload when the RadWindow is closed. 
 
I am passing arguments into the radwindow when the parent page calls it through the client-side showdialog function. Tthe problem is that if I don't allow the radwindow to refresh the home page when it's closed, the radwindow appends the argument to its querystring on every successive call. I'm wondering if there's a way to force this querystring to empty out between calls to the radwindow without forcing the parent page to reload and without setting the DestroyOnClose property to false for the RadWindow. 

Does anyone know of a clean way to dispose of the RadWindow on the client-side and to reconstitute when the user next opens it?  This is probably much more of a general javascript type of question but hopefully someone can help out.

Thanks
-Charlie
Charlie Davies
Top achievements
Rank 1
 answered on 15 Apr 2010
0 answers
87 views
Is it possible to have the panel expand "on top of" other items on the page? Perhaps with some kind of "transparency" setting? The reason I ask is that I have some panels in a table, and I don''t want that row of the table expanding to the same height as the panel when the user opens it.

Thanks
Paul Nascimento
Top achievements
Rank 1
 asked on 15 Apr 2010
8 answers
192 views
Two things that we are trying to resolve:

1) Is there a method that I can call to first check if the tab needs to be scrolled to - meaning only reachable through scrolling? This way I can ONLY scroll to a tab that did not appear on the screen. I don't want to scrollIntoView() to a tab unless the tab is not visible.

2) I've noticed that scrollIntoView() scrolls to a tab and it displays the tab as the first item from the left.
I would like to see the tab being displayed as the last item on the right.

 

T. Tsonev
Telerik team
 answered on 15 Apr 2010
1 answer
202 views
Hi Team,

I would like to know the limitations/issues with radcontrols trial license version apart from the trial error message shown.

Please reply me.....

-Liji
Daniel
Telerik team
 answered on 15 Apr 2010
2 answers
148 views
I have the following code, I get a standard prompt when renaming/deleting which prevents those actions from happening. Upload/View work great (also, new folder creation worked too when I had that enabled).  The C# running on postback or not makes no difference.

"The selected file could not be deleted because the application did not have enough permissions.  Please, contact the administrator."

<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" Height="150px" Width="450px" TreePaneWidth="122px" VisibleControls="Toolbar,ContextMenus,Grid"  
    EnableCreateNewFolder="False" ExplorerMode="Default"></telerik:RadFileExplorer> 


        protected void Page_Load(object sender, EventArgs e) 
        { 
            if (!Page.IsPostBack) 
            { 
                //CONFIGURE EVERYTHING 
                RadFileExplorer1.Configuration.UploadPaths = new string[] { virtualPath }; 
                RadFileExplorer1.Configuration.ViewPaths = new string[] { virtualPath }; 
                RadFileExplorer1.Configuration.DeletePaths = new string[] { virtualPath }; 
                RadFileExplorer1.InitialPath = virtualPath; 
 
                //Remove some buttons 
                RadToolBarButton backBtn = null
                RadToolBarButton forwardBtn = null
                foreach (RadToolBarButton btn in RadFileExplorer1.ToolBar.Items) 
                { 
                    if (btn.Value == "Back"
                        backBtn = btn; 
                    else if (btn.Value == "Forward"
                        forwardBtn = btn; 
                } 
                if (backBtn != null
                    RadFileExplorer1.ToolBar.Items.Remove(backBtn); 
                if (forwardBtn != null
                    RadFileExplorer1.ToolBar.Items.Remove(forwardBtn); 
 
                //set the props for the upload control 
                SetUploadProperties(); 
                 
                RadFileExplorer1.Grid.MasterTableView.NoDetailRecordsText = "Upload files using right mouse click or the upload button."
            } 
        } 
 
        private void SetUploadProperties() 
        { 
            string[] extensionsSearch = new string[XMLFileExtensions.AllowedFileTypes.Count]; 
            for (int x = 0; x < XMLFileExtensions.AllowedFileTypes.Count; x++) 
            { 
                extensionsSearch[x] = "*." + XMLFileExtensions.AllowedFileTypes[x].FileExtension; 
            } 
            RadFileExplorer1.Configuration.SearchPatterns = extensionsSearch; 
            RadFileExplorer1.Configuration.MaxUploadFileSize = 10485760;  
        } 



Marc
Top achievements
Rank 1
 answered on 15 Apr 2010
3 answers
220 views

I have a RadRotator in a user control that is being loaded dynamically via Ajax postback.  There is a lot more levels of complexity but I don't believe that they are relevent.  For instance the rotator is in a dock within a dockzone within a splitter inside of another splitter All of this within a master/content page.

My first problem is that on Ajax postback I get a javascript error: htmlfile: Could not set the rel property. Invalid property value. in a piece of code that is apparently moving <Link> tags into the <head> element.
The code is:

i.rel="stylesheet" 
i.rel already contains the string "stylesheet"

The links are the RadRotator CSS class files.

The second problem and most notible is that the rotator items are aligned vertically although the rotator rotates horizontally.  You can only see the first item.  It seems that the CSS styles are not being applied.  My work around is to place the CSS definitions statically in the apsx page.

If I click refresh which loads the entire page inline the javascript error does not occur and the rotator displays correctly.

The classes that I add statically to the ASPX page are:
        .rrClipRegion  .rrItemsList   
        {  
            float: left;  
            padding: 0;  
            margin: 0;  
            list-style: none !important;            
        }  
 
        .rrClipRegion  .rrItemsList li   
        {   
            float: left;  
        }  
 
        /* For vertical carousel, not set, width defaults to auto */  
        /* Note if you explicitly set width to auto, this might cause */  
        /* problems with Safari */  
 
        .RadRotator ul.rrVerticalList   
        {  
            padding: 0;  
            margin: 0;  
            list-style: none !important;  
        }  
 
        .RadRotator .rrVerticalList li  
        {   
            float: none;  
            margin-bottom: 0px;  
            /* Force the LI to respect the HEIGHT specified */  
            overflow: hidden;  
            display: block;  
        }  
 

This is a sufficient fix except that I still get the Ajax javascript error that I would like to get rid of.

Thanks in advance,
Doug
Doug
Top achievements
Rank 1
 answered on 15 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?