Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
67 views
hi

i am using  telerik Q1 2007 version . i have only default skin for Window. i want more skins to apply  to windows. where do i get the skins

for these version. i downloaded some but its not working.  e.g Mac,Retto_Skin,JonDan ,Aeromazing

please give me the solution ASAP

Rahul
Svetlina Anati
Telerik team
 answered on 19 Jun 2009
3 answers
301 views
Hello all,

I am trying to update the ContentUrl of a RadPane with ajax, however without any success yet. I found an article that mentioned that if I want to ajaxify a RadPane, I should wrap its contents inside a normal asp:panel or similar. However, this doesn't allow me to update the ContentUrl property. The RadPane should host a XBAP application. How this kind of behaviour could be implemented?

Any help is appreciated!

Best regards,
Ville
Svetlina Anati
Telerik team
 answered on 19 Jun 2009
5 answers
168 views
Hi,

I've two problems with the radsplitter. I'm using only one splitter, and two radpanes, and one radslidingzone.
The problems are:
- resizing the browser, messes up my screen
- how can I change the dock-icon? Changing it with the class rspSlideHeaderUndockIcon doesn't do it.

Thanks in advance

This is the source:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 
 
<%@ 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></title>  
  <style type="text/css">  
    .rspTabsContainer  
    {  
      background-color: Blue;  
    }  
    .rspSlideHeaderUndockIcon  
    {  
      background-color:red;  
      background-image: url(img/close.gif);  
    }  
    .maximized  
    {  
      position:absolute;  
      top:0px;  
      left:0px;  
      right:0px;  
      bottom:0px;  
    }  
      
    .PaneRechts  
    {  
      position:relative;  
      top:0px;  
      bottom:0px;  
      background-color:Yellow;  
      width:100%;  
    }  
    .PaneLinks  
    {  
      position: relative;  
      background-color:Red;  
    }  
  </style> 
</head> 
<body> 
  <form id="form1" runat="server" class="maximized">  
  <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
  </telerik:RadScriptManager> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
      <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="RadPane1">  
        </telerik:AjaxSetting> 
      </AjaxSettings> 
    </telerik:RadAjaxManager> 
      <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">  
 
      <script type="text/javascript">  
 
        RadOnClientExpanded = function()  
        {  
          var Pane = $find("<%=RadSlidingZone1.ClientID %>");  
          if (Pane)  
          {  
            Pane.dockPane("RadSlidingPane3");  
          }  
        }  
 
        RadOnClientLoaded = function()  
        {  
          var Pane = $find("<%=RadSlidingZone1.ClientID %>");  
          if (Pane)  
          {  
            //Pane.expandPane("RadSlidingPane3");  
            Pane.dockPane("RadSlidingPane3");  
          }  
        }  
      </script> 
 
    </telerik:RadScriptBlock> 
  <div class="maximized">  
    <telerik:RadSplitter ID="RadSplitter1" runat="server" PanesBorderSize="0" ResizeMode="EndPane" 
      SplitBarsSize="0px" OnClientLoaded="RadOnClientLoaded"   
      Skin="Web20" Height="100%" Width="100%">  
      <telerik:RadPane ID="RadPane1" runat="server" MinHeight="100" ToolTip="pane1" CssClass="PaneLinks">  
        <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" ClickToOpen="True">  
          <telerik:RadSlidingPane ID="RadSlidingPane3" runat="server" BackColor="Aqua"  style="overflow:scroll" 
            CollapseText="collapsie" DockText="DOCKIE" EnableResize="False" MinWidth="250"   
            OnClientExpanded="RadOnClientExpanded" PersistScrollPosition="true"   
            TabView="ImageOnly" Title="TITEL" Width="250">  
            <telerik:RadPanelBar ID="RadPanelBar1" runat="server">  
              <Items> 
                <telerik:RadPanelItem runat="server" Text="BOOM">  
                  <Items> 
                    <telerik:RadPanelItem> 
                      <ItemTemplate> 
                        hierin kan de boom komen  
                      </ItemTemplate> 
                    </telerik:RadPanelItem> 
                  </Items> 
                </telerik:RadPanelItem> 
                <telerik:RadPanelItem runat="server" Text="Root RadPanelItem2">  
                  <Items> 
                    <telerik:RadPanelItem runat="server" Text="Child RadPanelItem 1">  
                    </telerik:RadPanelItem> 
                    <telerik:RadPanelItem runat="server" Text="Child RadPanelItem 2">  
                    </telerik:RadPanelItem> 
                  </Items> 
                </telerik:RadPanelItem> 
                <telerik:RadPanelItem runat="server" Text="Root RadPanelItem3">  
                  <Items> 
                    <telerik:RadPanelItem runat="server" Text="Child RadPanelItem 1">  
                    </telerik:RadPanelItem> 
                    <telerik:RadPanelItem runat="server" Text="Child RadPanelItem 2">  
                    </telerik:RadPanelItem> 
                  </Items> 
                </telerik:RadPanelItem> 
              </Items> 
            </telerik:RadPanelBar> 
          </telerik:RadSlidingPane> 
        </telerik:RadSlidingZone> 
      </telerik:RadPane> 
      <telerik:RadPane ID="RadPane8" runat="server" CssClass="PaneRechts">  
        blaat blaat blaat  
      </telerik:RadPane> 
    </telerik:RadSplitter> 
  </div> 
  </form> 
</body> 
</html> 
 

Svetlina Anati
Telerik team
 answered on 19 Jun 2009
2 answers
367 views
I am working with a detailtable in radgrid and need to do a couple things that I have done on the radgrid, but it is not working in the detail table.

1) I am using client onrowclick to open window, which works fine in master table, but not in detail table. I need to somehow get the innerHTML of the cell of the clicked detailtable row.
function RowClick(sender, eventArgs)  
    var MasterTableView = eventArgs.get_tableView(); 
    var cell = MasterTableView.getCellByColumnUniqueName(MasterTableView.get_dataItems()[eventArgs.get_itemIndexHierarchical()], "ID"); 
    window.open("../ClientInformation.aspx?ClienteID=" + cell.innerHTML);  
 
 

2) I have some checkboxes that are used to control the columns displayed. It happens on server side, after binding the grid. The function works, but the detail table only removes the column on second databind. So basically I run report showing all columns, works fine. Then I uncheck a check box and run report, master column is removed, but detail column remains. Finally leaving checkboxes alone I run report again and both master and detail column is removed, which is what I want. Why is it not happening on first bind?
 
 
        private void CustomizeGrid() 
        { 
            foreach (ListItem li in chkDisplayColumns.Items) 
            { 
                if (!li.Selected) 
                { 
                    gridResults.Columns.FindByUniqueName(li.Value).Visible = false
                    gridResults.MasterTableView.DetailTables[0].Columns.FindByDataField(li.Value).Visible = false
                } 
                else 
                { 
                    gridResults.Columns.FindByUniqueName(li.Value).Visible = true
                    gridResults.MasterTableView.DetailTables[0].Columns.FindByDataField(li.Value).Visible = true
                } 
            } 
        } 

Any help is appreciated.


Monique Smartt
Top achievements
Rank 1
 answered on 19 Jun 2009
4 answers
691 views
I'm getting Error 500.21: Handler "Telerik.Web.UI.WebResource" has a bad module "ManagedPipelineHandler" in its module list whenever I set EnableStyleSheetCombine="true" on my RadStyleSheetManager.

Specifically, if I set EnableStyleSheetCombine to false, all of the Telerik styles are applied correctly. If I set it to true, none of the Telerik styles are applied. When I try to navigate directly to the stylesheet reference I get the 500.21 error. The stylesheet path is:

.../Telerik.Web.UI.WebResource.axd?compress=1&amp;_TSM_CombinedScripts_=%3b%3bTelerik.Web.UI%2c+Version%3d2008.2.723.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3afaa3c25c-0b63-45d2-9c6e-561f75337212%3a27b344d4%3ac25d6f00%3a611faf1c%3a348638f9%3ac0a1b7bc%3a49851299

  • I'm running VS 2008 on Vista so I'm using IIS7.
  • I have not changed the application pool although I have tried change it to the Classic pool and it made no difference..
  • validateIntegratedModeConfiguration is set to false.
  • I have a reference for Telerik.Web.UI.WebResource in both system.web/httpHandlers as well as system.webServer/handlers.
  • The base master page also has a RadScriptManager with EnableScriptCombine=true and when EnableStyleSheetCombine is false, the site still appears to work fine.
  • EnableHandlerDetection is true on both the RadScriptManager and the RadStyleSheetManager.
  • I'm using two layers of master pages. I.e., a given page has Foo.master as a master page. Foo.master has Base.master as its master page. Base.Master contains the RadScriptManager and the RadStytleSheetManager.
  • I'm using a Theme which is set in the Web.Config file and contains a CSS stylesheet. The styles from the Theme are applied correctly whether EnableStyleSheetCombine is true or false.
Rumen
Telerik team
 answered on 19 Jun 2009
1 answer
37 views
Is it possible to protect/lock parts of the document in the content window? If yes, I'll appreciate an example.
Rumen
Telerik team
 answered on 19 Jun 2009
1 answer
111 views
How do we go about dragging image files (.png, .gif etc) from windows explorer and dropping them in the content window?
Rumen
Telerik team
 answered on 19 Jun 2009
1 answer
53 views
Can someone shed some light on this for me?

I've installed ASP.NET AJAX Q1 2009 and after done installing, my toolbox under RadControls for ASPNET AJAX Q1 2009 shows up empty. I'm using Version 2.0.50727 SP2 for Visual Studio 2005 Team Suite.

Please advice.
Daniel
Telerik team
 answered on 19 Jun 2009
3 answers
102 views
Hi,

I am currently reviewing the Telerik control to be used in one of our applications. I am mainly interested in the Sliding panels functionality.

As far as I have seen the demos of sliding panels in the website, I noticed that only one panel can be docked at a time.  But in our application there is requirement where we need to dock two panels at a time showing them one beside the other.

So is it possible to achieve this anyway?

Any information on this will be greatly appreciated.

Thanks,
Sandeep
Svetlina Anati
Telerik team
 answered on 19 Jun 2009
1 answer
105 views
Hi

By default editor has 3 modes - design, html and preview. How can i add my own mode ? Let assume i would like to create editor that allows to edit email content so i would need  "plain text" mode button somewhere between html and preview buttons. I can take care of handling additional data (plain text content) but i could not find informations how to "register" new mode (fe EditModes="Design,Plain" does not work because "Plain" mode is not defined etc)

regards,
Marcin
Rumen
Telerik team
 answered on 19 Jun 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?