Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
662 views
I have a grid with two hierarchy. I need to hide the header of the two hierarchy grids. Is it possible? If so kindly tell me how to hide the header row?

Regards,
Jones
Jones
Top achievements
Rank 1
 answered on 13 Jul 2009
1 answer
153 views
I have deployed my application on server. On pages where i am using rad editor, when i see the requests made to server I observed that the editor is trying to access Webresource.axd and some other resources from a different ip other than our server's ip.

The other machine from which it is trying to access the resources is our local internal machine on the network.

Can i know why this is happening and how can i avoid it?
Tervel
Telerik team
 answered on 13 Jul 2009
1 answer
73 views
Hi

What is the simplest way to double the size of everything to fill the iphone
screen so no need for expanding and scrolling sideways?

I basically would need to double the default font size, line height, and the paging
numbers and arrrows.

Thanks

Clive

Dimo
Telerik team
 answered on 13 Jul 2009
1 answer
146 views

I tried to add border style to RadSlidingZone (see below: BorderColor="Red" BorderStyle="Solid" BorderWidth="2px"), but it doesn't have any effect:

<%@ Page Language="C#" %> 
<%@ 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>  
</head> 
<body> 
    <form id="form1" runat="server">  
      
        <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> 
      
        <telerik:RadSplitter ID="Splitter1" runat="server" Width="100%" Height="800px" Skin="WebBlue" Orientation="Vertical">    
            <telerik:RadPane ID="ParamPane1" runat="server" Width="22px" Scrolling="None">    
                <telerik:RadSlidingZone ID="ParamSlidingZone1" Runat="server" Width="22px" ExpandedPaneId="Parameter1" ClickToOpen="true">    
                    <telerik:RadSlidingPane ID="Parameter1" runat="server" Title="Parameter" Scrolling="None" EnableDock="false" EnableResize="false" BackColor="Beige" BorderColor="Red" BorderStyle="Solid" BorderWidth="2px"  Width="890px" /> 
                </telerik:RadSlidingZone>   
            </telerik:RadPane>   
        </telerik:RadSplitter>   
    </form> 
</body> 
</html> 
 


I am using 2009 Q2, and the browsers are IE6 and IE8.  Thanks,

Peichung
Tsvetie
Telerik team
 answered on 13 Jul 2009
1 answer
100 views
I've set up my datepicker as in 
http://www.telerik.com/support/kb/aspnet-ajax/input/standard-compliant-radinput-and-raddatetimepicker-with-no-tables.aspx
The datepicker is populated with a date from the database, and obviously the calendar should use this date as a start point.
In IE, this works fine but in firefox I have an intermitent error.
Sometimes, but not always (about 50% of the time), the dateinput popup will open to display today's month. The day number selected will correspond to the position of  the number in the datepicker in it's actual month. When another date is clicked to enter it within this month displayed, it will be processed as if the correct month is showing.
This is hard to explain, sorry!
For example, if the date in the datepicker is pre-populated to  3rd March 2009 (which is in 2nd row, 2nd column in March's display) the calendar will open to display todays month (July) but with the same position, which gives 7th July.  If I then select the 6th July as the new date, the datepicker will be populated with 2nd March.
Also, if I go back or forward a month from this point it would go to February or April respectively, and from that point onwards work fine.
Is this a known issue, or does anyone have any suggestions?
Dimo
Telerik team
 answered on 13 Jul 2009
2 answers
148 views
Hi there,

             I use master content page relation through out my application. When i navigate from one page to another the complete page loads within 5 sec but (the whole page) shown in a shrink en manner. After 7 to 10 sec the page stretches to fit the exact browser size. I use VisibleDuringInit="true" ResizeWithBrowserWindow="true" FullScreenMode="true" for RadSplitter. Please guide me where i'm going wrong. I did some work around to stretch the whole page on load. But doesn't work .

When i used VisibleDuringInit = "false" for RadSplitter after 15 sec the complete page gets loaded in a single stretch . But i 'm able to see the white page till it get loaded. how to avoid that.

Thanks!
Svetlina Anati
Telerik team
 answered on 13 Jul 2009
1 answer
88 views
Hi,

This relates to "any" extension rather than just the Telerik extensions.

When I have installed the Telerik extensions, or say, ReSharper, my visual studio 2008 seems less responsive.  Seems to "wait" and "think" more between operations, etc.  For example, It takes longer for the edit screen to let me edit again, after switching back from design mode, adding a control or something.

Has anyone else experienced this? And, if so, has anyone found a "solution".  I have ended up uninstalling any extensions I have loaded in the past.


thanks,


Richard
Blaize
Top achievements
Rank 1
 answered on 13 Jul 2009
3 answers
135 views
Is there a way to limit the user to selecting just one column for sorting? 

Shinu
Top achievements
Rank 2
 answered on 13 Jul 2009
0 answers
149 views
Hello,

I have a tabbed userinterface implemented with RadTabStrip and RadTabView/RadTab. It contains multiple Tab pages.
Problem is that when I fetch data into Tab1 and show it there, change to another Tab, called Tab2, which has an link activating previous Tab1 with keys to new data, the old data is shown in Tab1. I have tried to clear Tab1's Textfields from CodeBehind setting it's TextField variables to empty values (TextField1.Text = String.Empty;) and in Clientside using Javascript/DOM. But still old data is shown in Tab1 until new data is fetched from database and updated into Tab1.

I activate Tab1 from Tab2 using Javascript code like below:

function ActivateFirstTab()
{
.......
var tab = tabstrip.get_tabs().getTab(0);
tab.set_selected(true);
}

I call that Javascript from CodeBehind using RadScriptManager like below:
scriptManager.Scripts.Add("return ActivateFirstTab();");

So can anyone tell why old data is still shown in Tab1's textfields although I have set empty values into them before calling Javascript to activate and show Tab? Is it because of Ajax or is it impossible to change values of non activated tab?

Like to resolve this because Customer is confused after selecting a another DataItem from Tab2 and when Tab1 is activated old data is shown there a while.

Thank you,

Mike


mike kosinsky
Top achievements
Rank 1
 asked on 13 Jul 2009
3 answers
69 views
Hi there,
Dose Telerik have a Pager control which be independent that is not included in RadGrid control?
something like what that DevExpress component has. see the following location:
http://www.devexpress.com/Help/?document=ASPxperience/CustomDocument3657.htm

Thanks.
Yavor
Telerik team
 answered on 13 Jul 2009
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?