Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
142 views
Hello,

I'm curious to see if anyone uses both Mosso hosting (from Rackspace - www.mosso.com) and Telerik controls?

I found this article on the telerik site:
http://www.telerik.com/help/aspnet-ajax/installdeployingonsharedhosting.html

However, Mosso says that because this install guide says you have to create a new virtual directory and customize application permissions, it's not possible to host on a shared platform like Mosso.  Is there any other way to install it so that they'll work?

I find it hard to believe no one has tried to load a Telerik control on a website hosted on Mosso (or any other cloud service?), but searches aren't turning up much.  Has anyone actually tried this and found success or failure?





Paul
Telerik team
 answered on 18 Feb 2009
9 answers
250 views
Hi there,

I am using telerik grid, in which i have facilitate with  filter,sorting and virtual loading. The problem i am facing is that, when i use to do filter, its working fine for other browser like mozilla firefox, opera, safari. But when i will do filter in IE, i am getting white space below.
I am sending the coding which i am using for filter ... Can anybody help me to come out of this problem.

  <script type="text/javascript">  
         //------ Grid Resize ------ //
         function GridCreated()   
           {
             var grid = document.getElementById('<%=radgrid1.ClientID %>');
             var scrollArea = document.getElementById("<%= radgrid1.ClientID %>" + "_GridData");                             
             var dataHeight =  document.getElementById("ctl00_ContentPlaceHolder1_radgrid1_ctl00");                  
            if(dataHeight.clientHeight < 350)
               {    
                 alert('GridCreated1');
                 //alert(dataHeight.clientHeight);
                 func="test";
                 scrollArea.style.height = dataHeight.clientHeight + 1 + "px";
                 //alert(scrollArea.style.height);
                 scrollArea.style.overflow = "auto";
               }
             }
        </script>




Sebastian
Telerik team
 answered on 18 Feb 2009
1 answer
219 views
Hi,
    We want to get count of selected items (i.e. rows) from gridview using Javascript. We have used the following script in our code.
  <

telerik:RadCodeBlock ID="RadCodeBlock" runat="server">

 

    <

 

 

script type="text/javascript">

 

        function GetSelectedItems()

 

 

         {

 

                var selectItem = $find("<%= gvQueryList.MasterTableView.ClientID %>").get_selectedItems().length;

 

 

 

 

                if(selectItem == 0)

 

 

                 {

                        alert(

 

 

"Please select atleast one query");

 

                        return false;

 

 

                 }

 

                else if(selectItem >1)

 

 

                 {

                        alert(

 

 

"Please select only one query");

 

                        return false;

 

 

                 }
                

else

 

 

 

                {

 

 

                        return true;

 

 

                 }

    }

     </

script>

 

 </

telerik:RadCodeBlock>

 

 

 

 

 

The above script is working fine. But it is not working on our server. So is there any problem with our server browser or browser version ? Currently server brower version is IE 7. Can you suggest any other solution for the same using Javascript ?


Thanks in advance

 

 

 

Pavlina
Telerik team
 answered on 18 Feb 2009
7 answers
297 views
Hi guys,

Every now and then I get this error message in FF when trying to export a radGrid to pdf:

XML Parsing Error: no element found
Location: http://localhost/etc/etc
Line Number 1, Column 1:
^


When this occurs, IE is however just displays a blank page.

When this has happened I've been able to backtrack any recent changes in my code, and continued from there. I wasn't so lucky this last time. I've actually commented out every single settings, so I'm basically just making a dry call: RadGrid1.MasterTableView.ExportToPdf()

Still the error exists.

I searched the forums but didn't find any info on this, does anyone have an idea just what might be going on?

Regards,
-DJ-



Daniel
Telerik team
 answered on 18 Feb 2009
1 answer
115 views
Hello everyone, 
I created a radmenu with a objectdatasource which has its ID, parent, name, url and I want the press the menu option the URL is displayed in radpane.

<

 

telerik:RadSplitter ID="RadSplitter1" Runat="server" Height="560px" meta:resourcekey="RadSplitter1Resource1"

 

 

SplitBarsSize="" Width="921px">

 

 

    <telerik:RadPane ID="pane_left" runat="server" Width="25px" Scrolling="None"

 

 

        Locked="True" EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False"

 

 

        Height="" Index="0" meta:resourcekey="pane_leftResource1" Skin="">

 

 

            <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" ClickToOpen="True"

 

 

                Width="25px" EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False"

 

 

                Height="100%" meta:resourcekey="RadSlidingZone1Resource1" Skin="">

 

 

            <telerik:RadSlidingPane ID="RspPrincipal" runat="server" Width="250px"

 

 

                Title="Menu Principal" Font-Size="Medium"

 

 

                EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False" Index="0"

 

 

            meta:resourcekey="RspPrincipalResource1" Skin="">

 

 

            <!-- ACA Insertamos el menu de los usuarios !-->

 

 

        <asp:ObjectDataSource ID="ObjectDataSource1" runat="server"

 

 

                DataObjectTypeName="ServisistemasAra.FoxisWeb.BusinessEntities.Menus"

 

 

                DeleteMethod="Delete" InsertMethod="Save"

 

 

                OldValuesParameterFormatString="original_{0}" SelectMethod="GetList"

 

 

                TypeName="ServisistemasAra.FoxisWeb.Bll.MenuManager"></asp:ObjectDataSource>

 

 

                <telerik:RadMenu ID="RadMenu2" Runat="server"

 

 

                DataSourceID="ObjectDataSource1" DataFieldID="Id"

 

 

                DataFieldParentID="ParentId" DataNavigateUrlField="Funcion"

 

 

                DataTextField="Descripcion" DataValueField="Id">

 

 

                <CollapseAnimation Duration="200" Type="OutQuint" />

 

 

                </telerik:RadMenu>

 

 

    </telerik:RadSlidingPane>

 

 

    <telerik:RadSlidingPane ID="RspNoticias" runat="server" Width="400px"

 

 

            Title="Noticias" Font-Size="Medium"

 

 

            EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False" Index="0"

 

 

            meta:resourcekey="RspPrincipalResource1" Skin="">

 

 

            <!-- ACA Insertamos el menu de los usuarios !-->

 

 

        </telerik:RadSlidingPane>

 

 

</telerik:RadSlidingZone>

 

 

</telerik:RadPane>

 

 

<telerik:RadSplitBar ID="Radsplitbar1" runat="server"

 

 

EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False" Index="1"

 

 

meta:resourcekey="Radsplitbar1Resource1" Skin=""></telerik:RadSplitBar>

 

 

<telerik:RadPane ID="pane_centro" runat="server" Width="911px" Height="37px"

 

 

EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="False" Index="2"

 

 

meta:resourcekey="pane_centroResource1" Skin="">

 

 

<!-- Centro Display de navigateurl of menu in this pane!-->

 

 

</telerik:RadPane>

 

 

</telerik:RadSplitter>

Thanks for your colaboration

Alex

 

Paul
Telerik team
 answered on 18 Feb 2009
3 answers
139 views
i have dropdown in ascx.cs page...i want "Select" to be bind in 0th position..it is not binding at first time...i also gave in !ispostback,no use....after insert it is binding....please give suggestion..
Shinu
Top achievements
Rank 2
 answered on 18 Feb 2009
3 answers
85 views
Hi all,

On my web application, I'm using the RadToolTip manager. I made this choice because I want to display it with a Load on Demand to increase performances.

All seems to work fine, but, when I've tested my application, a bug appears. I think it's a bug because I can reproduce it on the telerik sample page: http://demos.telerik.com/aspnet-ajax/tooltip/examples/loadondemand/defaultcs.aspx

On this configuration, we load an ascx on the fly which contains the tooltip. So, when you put the mouse over the tooltipified element (product image on Telerik example), the tooltip is displayed. But, if you do and redo again and again, you can see that the height of the tooltip is growing!

You can see here screenshots : http://cid-cc2dc80e5681ccd2.skydrive.live.com/self.aspx/Telerik . The 1st jpeg is the 1st time I load the tooltip and the 2nd jpeg is about 15 times.

Any idea about this?

Thanks in advance.

Keelan.
Keelan
Top achievements
Rank 1
 answered on 18 Feb 2009
1 answer
120 views

Hi Support Team,

   We are using Telerik .NET Controls. We work on .NET 3.5 framework. For telerik controls we also installed Ajax extension 1.0. Due to which our some features in the system fais to work.

 

 

Can you please let me know if I can use Telerik controls without Ajax Extension 1.0.

 

Waiting for the soon reply.

 

Thanks and Regards

Sridebi Korada

Paul
Telerik team
 answered on 18 Feb 2009
4 answers
120 views
Hello all,

ASP.NET version--->2.0
OS---> XP
exact browser version --->IE 6.0
exact version of the Telerik product --->Not sure(slightly embarrassed...)
preferred programming language (VB.NET or C#) ---->C#


I have a listbox that displays products.
Is there a property that would allow the following:

As a user is focused on the listbox and starts typing the product they are looking for, it would sort to that product, e.g.

a
ab
ac--->#3
ad
b
c--->#6
d

So, if a user types in "ac" it would go to #3 rather than #6.

Thanks


Steve
Telerik team
 answered on 18 Feb 2009
3 answers
56 views
Hi,

I have a rad grid with a number of templated columns for example...

<telerik:GridTemplateColumn UniqueName="PremiumPartName" HeaderText="Premium Part">
 
<ItemTemplate>
    <asp:HiddenField ID="hdnPremiumPartID" runat="server" />
    <asp:HiddenField ID="hdnOriginalITP" runat="server" />
    <asp:HiddenField ID="hdnOriginalGross" runat="server" />
    <asp:Literal ID="litPremiumPart" runat="server" />
   </ItemTemplate>
   <FooterTemplate>
     <asp:Literal ID="litTotalLabel" runat="server" />
  
</FooterTemplate>
</telerik:GridTemplateColumn>

I'm binding the values using the item data bound event...

 

 

protected void grdAdjustments_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
  switch
(e.Item.ItemType)
  {
    case Telerik.Web.UI.GridItemType
.AlternatingItem:
    case Telerik.Web.UI.GridItemType
.Item:
        //ItemIndexHierarchical
       
if (e.Item.ItemIndexHierarchical.Split(':'
).Length > 1)
        {
           //details table
           BindDetailTableRow(e);
        }
        else
        {
           //master table row
          BindMasterTableRow(e);
        }

 

 

        break;
   case Telerik.Web.UI.GridItemType
.NestedView:

 

 

        break;

 

 

   case Telerik.Web.UI.GridItemType.Footer:
        //bind footer

 

 

        BindFooterRow(e);
      

break;

 

    }

}

 

This works fine when the grid is first bound, however when I try to expand a details table for one of the rows the footer is blank. Any ideas why this might be?

Thanks

Yavor
Telerik team
 answered on 18 Feb 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?