Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
178 views
I am having issues getting a RadSplitter to take up 100% height and 100% width in firefox only (IE works wonderfully)

In firefox it looks like it is setting the width and height to  400px. I know that the parent container is working perfect as the screen is taken up by a red block from the DIV.

Examples:
http://www.fleetdynamics.com.au/firefox.jpg
http://www.fleetdynamics.com.au/ie.jpg

Build is 2009.3.1208.35

<body style="height:100%; width:100%">  
     <form id="ManagerForm" runat="server" style="width:100%; height:100%"><div style="height: 100%; background-color:red">  
         <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
         </telerik:RadScriptManager>     
        <telerik:RadSplitter ID="RadSplitter1" runat="server"    
            VisibleDuringInit="true" Width="100%" PanesBorderSize="0"  BorderSize="0"   
             Height="100%" Orientation="Horizontal" FullScreenMode="False">   
 
         <telerik:RadPane ID="Radpane3" runat="server" Height="128" Scrolling="None">  
             header         </telerik:RadPane> 
         <telerik:RadPane ID="Radpane5" runat="server">  
             <telerik:RadSplitter ID="RadSplitter2" runat="server" BorderSize="0">  
                 <telerik:RadPane ID="Radpane1" runat="server" Width="200">  
                     <uc1:VehicleInfo ID="VehicleInfo1" runat="server" /> 
                 </telerik:RadPane> 
                 <telerik:RadSplitBar runat="server" CollapseMode="Forward" EnableResize="false" /> 
                 <telerik:RadPane ID="Radpane2" runat="server">  
                     <asp:PlaceHolder ID="MapPlaceHolder" runat="server"></asp:PlaceHolder> 
                 </telerik:RadPane> 
             </telerik:RadSplitter> 
         </telerik:RadPane> 
         <telerik:RadPane ID="Radpane4" runat="server" Height="45" Width="100%">  
            footer  
         </telerik:RadPane> 
     </telerik:RadSplitter> 
     </div></form></body> 
Svetlina Anati
Telerik team
 answered on 06 Jan 2010
1 answer
98 views
In IE8 with RadEditor 2009.3.1208.20, but not FF 3.5.6, the find/replace dialog always sets the cursor back to its original position in the editor content when the dialog is closed, i.e. the place the cursor was when the find/replace button is clicked on the toolbar. Not desirable when using find, as you want to get to the thing you found, not back to your starting point.

How to modify this behaviour?
Dobromir
Telerik team
 answered on 06 Jan 2010
1 answer
77 views

Hi.

I have done an ASP.Net Web Project. I am able to displaying the webpage in IE8, FireFox, Crome, and Safari in Windows XP Operating system.

But, it’s not displaying in Windows 7 operating system. It is showing controls, images, icons, CSS menu tabs very small at any resolution.

Can any one help me how to overcome this problem?

Thank You

Suresh K

Poul Henningsen
Top achievements
Rank 1
 answered on 06 Jan 2010
6 answers
342 views
Hi,

I've used the RadToolBar as a container to display RadMenus. RadToolBar is placed in a Master Page so that it is available with standard features on all pages. RadToolBar is fixed in its position using CSS expressions:

* html .ToolBar_Fixed 
        {
            position:relative !important;
            top:expression(eval(document.documentElement.scrollTop? document.documentElement.scrollTop : document.body.scrollTop) + "px");
            left:expression(eval(document.documentElement.scrollLeft? document.documentElement.scrollLeft : document.body.scrollLeft ) + "px");
        }   

Now, the issue is that when the content page is scrolled, ToolBar stays at its position but standard dropdown controls (as shown in attached image) are displayed over it, and not under it. This issue appears with IE6 only and is fine with IE7.
On the other hand, when other 3rd party controls (like charts) are to be shown, the RadMenus in the RadToolBar get hidden by the 3rd party controls and are not displayed (probably due to some z-index issue)  - This issue exists across browsers.

Please help, as this is needed by the client for go-live very soon.
Thanks.
Yana
Telerik team
 answered on 06 Jan 2010
3 answers
267 views
Hello,

We are evaluating telerik asp.net ajax components for one of our clients specially the rad grid control. Im stuck in a scenario and need your expert advice and recommendation on how to solve the issue.

Scenerio: (selecting records from popup window grid and adding to parent window grid )

I have a main page (parent page) on which there is a Rad control grid that display set of records. What im trying to do is to open a popup window from this main page and display another rad grid in the popup window. From this popup window grid I want to select one or more records (grid rows through checkbox),  add it to the main grid and close the popup window. How best this can be achieved using telerik ajax functionality. Kindly advice

And also datasource is not bound to the datasource. I'm using a list collection as datasource for the parent and in popup grid.


Regards,

Ebrahim.

Shinu
Top achievements
Rank 2
 answered on 06 Jan 2010
3 answers
169 views
Hi

I read through several similar problems to mine, however, I was unable to solve mine.
Aim is to client access the Object object (not the HTML dom object) of a RadListBox located in a RadGrid FromTemplate.

Here's the code so far
var listbox = $telerik.findControl(document.getElementById('<%= RadGrid1.ClientID %>'), "RadListBox1"); 
while the $telerik.findControl returns null.
Same issue with $find.

In the documentation "Accessing server controls in a grid template on the client" you only access the HTML DOM element which has no use if I want to manipulate the ListBox like in the RadGrid clientside examples.
I am no expert in JavaScript, please correct me if I'm wrong.

Thanks in advance for answers
Kind regards
Roman
Roman
Top achievements
Rank 1
 answered on 06 Jan 2010
0 answers
85 views
I have a problem when

Please view a below problem
http://c.uploadanh.com/upload/2/172/DA0.4792434_1_1.png

I provide a schedule data source which have many appointment (>200 Appointment). of one day)

<telerik:RadScheduler ID="RadScheduler1" runat="server"
            DataKeyField="AppointmentID" DataStartField="Dappt_time" DataEndField="Darrival_tim DataSubjectField="Dpatient_first_name" DayStartTime="06:00:00" DayEndTime="21:00:00">            
</telerik:RadScheduler>

My data source is a data table. (All appointments
DataTable dt = dv.ToTable();

Schedule1.DataSource = dt;
Schedule1.DataBind();   

Result, Schedule show many very tiny appointment that can't view detail appointment information.
I don't find a property to set the width of appointment item.

Please show me a solution
IMT Solutions
Top achievements
Rank 1
 asked on 06 Jan 2010
5 answers
239 views
Here's the scenario I'm having issues with. In the grid, when clients clicks on whatever rows, a modal window will pop open with more details of the row selected. Whenever the "X" on the top right corner of the modal window is clicked, this will show a popup box (default) with two buttons "ok/cancel". I just wanted to know, is there a way to set the buttons from "ok/cancel" to "yes/no" within the current version? I've looked at and searched and tried most of the suggestions but wasnt able to resolve the issue I'm having. Please give me your input or any suggestions as to how I can resolve this issue.  
Herseng Yang
Top achievements
Rank 1
 answered on 06 Jan 2010
1 answer
207 views


Initially AllowScroll=False in RadGrid

I have wrote code as below in javascript 
 var grid = $find("<%= RadGrid3.ClientID %>");
then 
grid.ClientSettings.Scrolling.AllowScroll = true;
grid.GridDataDiv.style.height = "150px" 

but GridDataDiv returns null in this case


but when AllowScroll=True  in RadGrid 

then 

grid.GridDataDiv.style.height = "150px"  this line of code works.


Why 
grid.ClientSettings.Scrolling.AllowScroll = true;
is not supporting..
i want to set AllowScroll  using javascript becoz if records are less then no need of scrolling.

Dimo
Telerik team
 answered on 06 Jan 2010
2 answers
147 views
Hello,

I want my treeview nodes to behave slightly differently to the default in that when a node that has child nodes is clicked the postback is disabled and the node is simply expanded. I will be wanting to raise a postback and fire the node click event when a node that does not have child nodes is clicked.

I tried a server side approach on the node data bound event by trying to count the e.Node.Nodes to see if it had children that way but it was always returned as 0. Is there a server or client side approach I can use to achieve the node behavior I require?

Thanks,

Michael
Michael Dunbar
Top achievements
Rank 2
 answered on 06 Jan 2010
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?