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

Hi all,

 How to  avoid postback on the Click event of  RadTreeList Expand (+) ,collapse (-) button?

Thanks
Sindu
Princy
Top achievements
Rank 2
 answered on 24 Oct 2011
1 answer
326 views
Hi Admin/Moderator ,

I have recently converted By Web Application from ASP.Net 2.0 to Asp.Net 3.5 to use the Telerik Version 2011.I have used the Telerik Version 2008 previously.After conversion the Ajax Version also converted from 1.0 to 3.5But getting the following error during application debugging.
Microsoft JScript runtime error: Unable to get value of the property 'PageRequestManager': object is null or undefined
I have used the property 'PageRequestManager in the Splitter control of Telerik Version 2008.
Could you please reply a solution?

Thanks,
Tinoy
Dobromir
Telerik team
 answered on 24 Oct 2011
3 answers
156 views

         When i used ajax modal pop up extender in radschedule, calander and dropdownlist in RadSchedulerRecurrenceEditor is  going beyond the pop up. Please find attached to under stand my problem as much as clearly.
Ivana
Telerik team
 answered on 24 Oct 2011
2 answers
212 views
Hi All

I have a basic Grid with 13 bound cols, based on value at databound I want to change the text in the cell. 

if (e.Item is GridDataItem)
          {
              StockPurchasingVehicle v = (StockPurchasingVehicle)e.Item.DataItem;
              GridDataItem item = (GridDataItem)e.Item;
 
              if (v.OffHireDate == DateTime.MinValue)
              {
                  item.Cells[6].Text = "";
              }
          }

my "OffHireDate" should be index my 4th column, however 6 is the correct index, this seems to be the same for all columns, i.e first index Cells[0] is actually Cells[2].??

I have no hidden cols, or templates.  Not sure how it is counting index, should i use Column Name to access it? rather than index.

Thanks


Sebastian
Telerik team
 answered on 24 Oct 2011
1 answer
210 views
I am having a problem when I hover off the selected tab, it reverts to the standard, non-selected css class.  When the page loads the selected tab has a yellow background image, the other tabs have a blue background.  When I hover over the selected tab it remains yellow, when I move the mouse off the selected tab (hover off) its background becomes blue.

Here's the code:

Code behind:
RadTab tab = new RadTab();
                tabStripMain.Tabs.Add(tab);
 
                switch (myswitch)
                {
                    case 1:
                         tab.Text = node.SelectSingleNode("TAB_TITLE").ChildNodes[0].Value;
                         tab.Font.Size = 12;
                         tab.CssClass = "results_tab_off";
                         tab.SelectedCssClass = "results_tab_on";
                         tab.HoveredCssClass = "results_tab_on";
break;
                    default:
                        tabStripMain.EnableEmbeddedSkins = true;
                        tabStripMain.Skin = "Outlook";
                    break;
 
                }

And the css:

.results_tab_off
{
    background:white url(/images/medica/results_tab_off.png) no-repeat 0 100%;
    height: 40px;
    width: 211px;
    color: White;
    padding: 10px 0px 0px 0px !important;
    text-align: left !important;
    border-left: 1px solid white;
}
 
.results_tab_on
{
    background:white url(/images/medica/results_tab_on.png) no-repeat 0 100%;
    height: 40px;
    width: 211px;
    color: #999;
    padding: 10px 0px 0px 0px !important;
    text-align: left !important;
    border-left: 1px solid white;
}
 
.RadTabStrip .rtsTxt {
   padding-left: 5px !important;
   padding-top: 13px !important;
Kate
Telerik team
 answered on 24 Oct 2011
1 answer
154 views
Hi,
 We have two different IIS 6 servers (Windows 2003 sp2) serving the same website with one page being different. In the site having the non-telerik version we typically see 500-600 MB of memory usage by the w3wp process. In the telerik radajax control server the memory load is around 700 mb. All other parameters are same between the servers including the load distribution. I was wondering if its common for the telerik controls to boost memory usage on the server and if anyone else is experiencing that? The page uses the RadAjaxManager along with the rad nav bar and the radgrid.

Thanks,
Ximor.
Maria Ilieva
Telerik team
 answered on 24 Oct 2011
4 answers
109 views
Hi
I'm using Telerik.Web.UI, v4.0.30319, 2011.2.915.40.
I am trying to style some pages across a number of browsers, and have a problem!This code
<div style="width: 550px;">
<div style="margin-top: 5px;">
  
<label for="cmbMake">
  
<span class="redtext">*</span> Vessel Make</label>
  
<div class="info"> </div>
<telerik:RadComboBox ID="cmbMake" Width="249px" runat="server" Filter="Contains" Skin="WebBlue" Font-Names="Arial" AutoPostBack="True"OnSelectedIndexChanged="cmbMake_SelectedIndexChanged" OnItemDataBound="cmbMake_ItemDataBound" OnItemsRequested="cmbMake_ItemsRequested">
 
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
 
</telerik:RadComboBox>
 
</div>
<div style="clear: both;"></div>
 
<div style="margin-top: 5px;">
 
<label for="cmbModel">
 
<span class="redtext">*</span> Vessel Model</label>
 
<div class="info"> </div>
 
<telerik:RadComboBox ID="cmbModel" Width="249px" AllowCustomText="true" runat="server" Filter="Contains" Font-Names="Arial" Skin="WebBlue" AutoPostBack="True" OnSelectedIndexChanged="cmbModel_SelectedIndexChanged" OnItemDataBound="cmbModel_ItemDataBound" OnItemsRequested="cmbModel_ItemsRequested">
 
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
 
</telerik:RadComboBox>
 
</div>
  
</div>
It renders correctly in IE7,8,9, Opera 11.5, Chrome 10.5, Safari 5,
BUT
Any current version of Firefox ends up with the two RadComboBoxes over twice as wide as they should be!
(See attached pics)
Any thoughts?

Cheers

Dave
Dave
Top achievements
Rank 1
 answered on 24 Oct 2011
1 answer
214 views

Hi,

I have a RadTreeList. It has two Parent item.First Item have three child Item.My requirement is to add a row after these  three childitem on the click (+ button) of the corresponding parentitem.When I use DetailTemplate ,new row is added each parent and each child.So I cannot use this method.How can I add a new row after the three childitem on the click of the corresponding parent Iem?

Thanks In advance
Tsvetina
Telerik team
 answered on 24 Oct 2011
3 answers
74 views
Hi,

       I am a licensed user for Telerik Asp Ajax Radcontrols. I have used Telerik Office 2007 theme in my application. Initially in the page load i have a button in disabled state. After the user enters some data in the page from server side i am enabling the button. Things were completely fine in IE and firefox browsers. (ie, u can clearly visualize and differentiate a disabled and enabled button by looking at it). But in Safari 5.0, the themes dont get changed as soon as you enable that button. (I mean, i could click the button and the functionality works, but i am not able to see any visual changes compared to the disabled mode). I have attached the disabled mode appearance and enabled mode appearance (file enabled.png). You can observe the theme of both. And also once reload the entire page the enabled mode styles are getting applied. (file enabled1.png)

I could not post any code or detailed snaps. But i think the data i provided should be fine. Kindly help, as it is a critical requirement in end user's perspective.

Regards,
Saravanan K

 
Slav
Telerik team
 answered on 24 Oct 2011
1 answer
101 views
Is it possible to assign an ObjectDataSource to a TreeView control, from Javascript? This is because I´m returning said ObjectDataSource from a JSON call. The data takes a while to load, so I wanted to load it asynchronously.

What can I call on the TreeView (or anywhere else) to load the returned ObjectDataSource into the TreeView?
Plamen
Telerik team
 answered on 24 Oct 2011
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?