Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
157 views
Here is how our project is designed:

We got a Splitter containing 2 Panes separated by a SplitBar .
The first pane on the left contains a sliding zone with sliding panes.
On the right the second pane contains a TabStrip with 2 (or more) Tabs.
These tabs display basic aspx pages (form with div ...)

Here is my problem:
If I dock a sliding pane, the page displayed in the selected tab is well resized. But If I select another tab, the page displayed in this tab is not resized : it keeps the initial size the page has before the sliding pane was docked.
Moreover, if I undocked the sliding pane, the page does not retrieve it initial size.

How can I force the page to resize when I select the tab ?
Svetlina Anati
Telerik team
 answered on 16 Sep 2009
3 answers
128 views
Hi

I now have a tooltip working with grid items per your demo in the docs, bu there is just one
thing bugging me.   I want the tooltip to remain open until the visitor moves their mouse away, then to close,
preferably after a delay. Right now, the tooltip close after about half a second even if the mouse is still
over the targetcontrol.
Here are the settings
<telerik:RadToolTipManager ID="RadToolTipManager1" OffsetY="-1" HideEvent="LeaveTargetAndToolTip" 
            Width="410" Height="150" runat="server" OnAjaxUpdate="OnAjaxUpdate" RelativeTo="Element" 
            Position="TopCenter">  
        </telerik:RadToolTipManager> 

What am I doing wrong?
Thanks

Clive
Svetlina Anati
Telerik team
 answered on 16 Sep 2009
6 answers
97 views

Hi.

 

Is there any updates on the problem described in thread “TabStrip with ScrollChildren too wide in Firefox 3”: my TabStrip is 10,000 px wide in IE 8. My Telerik DLL version is 2009.2.701.35.

 

The JavaScript workaround you provided in the mentioned thread does not work for me since I am generating multiple tabstrips dynamically from code behind with dynamic names and also I have tabstrips inside other tabstrips.

Thank you for any suggestions.

Roy Halvorsen
Top achievements
Rank 1
 answered on 16 Sep 2009
3 answers
95 views
I added a custom dialog to the editor's toolbar and managed to get it working as per your sample at: http://demos.telerik.com/aspnet-ajax/editor/examples/customdialogs/defaultcs.aspx.

However, the editor's default toolbar has disappeared! Is there a way to append my custom button to the original toolbar rather than replacing it?

Regards

Dana
Rumen
Telerik team
 answered on 16 Sep 2009
3 answers
283 views
I am tring to hide a tooltip on the server side but i am lost... Can someone help me. here is the Javascript i have and the tooltip.

 

function HideTooltip() {

var tooltip = Telerik.Web.UI.RadToolTip.getCurrent();

if (tooltip) tooltip.hide();

}

 

<telerik:RadToolTip runat="server" ID="rttLnameCk" ShowCallout="false" Position="MiddleRight"

RelativeTo="Element">

<asp:CheckBoxList ID="cblLastName" runat="server" CellSpacing="0" CellPadding="0">

</asp:CheckBoxList>

<asp:Button ID="btSelect" runat="server" Text="Select" OnClientClick="InsertName(); return false;" />

</telerik:RadToolTip>

 

 thank you for all your help

 

Svetlina Anati
Telerik team
 answered on 16 Sep 2009
1 answer
125 views
Hi,

Anyone know how to customize the modal dialogs in the scheduler?

Mode specificly I need to put a new background on all the dialogs. My background is a semi transparent png and it is destroyed in IE because of the opacity of the dialog. I have tried to remove the filter attribute when the dialogs is shown, but it's not a very good solution.

Can I somehow stop the dialogs from using opacity?

Regards
Rune
Kamen Bundev
Telerik team
 answered on 16 Sep 2009
2 answers
159 views
Hi,
I have a splitter with two Panes on my page and depending on how much content there is in it I want the splitter to expand completely to prevent a scroll in one of the panes.
It almost work if I set the height of the html, body, form and the splitter tags to 100%.
The problem is when there is more content in one of the panes then the browser window height (100%), then the pane adds a scroll so I get two scrolls, one in the pane and one in the browser. And I just want the browser scroll!

So I tried to replace every height:100% from the html to the splitter tags to min-height:100% instead with no success.

Maybe I missed some property but is it possible to remove the panes scrolls and have the splitter to min-height:100% because I want the splitter to show to the bottom of the page even if there isn't so much content.

Some example code:
<html> 
<head> 
     <style type="text/css"
          html, body, form, .radSplitter, .radSplitterMain, .radSplitterNews { min-height:100% } 
     </style> 
</head 
<body> 
     <div style="min-height:100%"
        <telerik:RadSplitter ID="RadSplitter1" Runat="server" CssClass="radSplitter"  
         ResizeWithParentPane="False" VisibleDuringInit="false" Width="100%" 
        PanesBorderSize="0" BorderSize="0"
        <telerik:RadPane id="MainPane" runat="server" BorderWidth="0" CssClass="radSplitterMain"
            text, text, a lot of text!!! 
        </telerik:RadPane> 
        <telerik:RadSplitBar id="RadSplitbar1" runat="server" CollapseMode="Backward"></telerik:RadSplitBar> 
        <telerik:RadPane id="RightPane" runat="server" width="200" Scrolling="None" BorderWidth="0" CssClass="radSplitterNews"
            text, text 
        </telerik:RadPane> 
        </telerik:RadSplitter> 
     </div> 
</body> 
</html> 


Regards,
Mattias
Svetlina Anati
Telerik team
 answered on 16 Sep 2009
2 answers
127 views
Dear
i need to configure raddatepicker to be started from right to left

Regards,
aabdan
Top achievements
Rank 1
 answered on 16 Sep 2009
2 answers
112 views
Hello,

I need to modify a server control from within my grid's ItemCommand event handler. The example below is simplified as much as I can.

Below, I  have an asp:label control inside a NestedItemView in my grid. The label's text property is set in my markup code.

When i expand the row (making the nested view visible), I want to modify the label.text property.

With the code below, when I expand the FIRST row in my grid, the label's text property is modified as it shoud. When I expand other rows, their labels' text properties are not modified.

I know this is a dumb example, but my real-world problem is too muddy to explain here. :-)


Protected Sub radGrid1_ItemCommand(ByVal source As ObjectByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles radGrid1.ItemCommand 
 
        Dim nv As GridNestedViewItem = radGrid1.MasterTableView.GetItems(GridItemType.NestedView)(0) 
 
        Dim tmpLabel As Label = CType(nv.Controls(1).Controls(0).FindControl("lblTest"), Label) 
 
        tmpLabel.Text += "_bob" 
 
         
    End Sub 

Any help appreciated.

Jeppe Jespersen
Denmark

Soren Michelsen
Top achievements
Rank 1
 answered on 16 Sep 2009
1 answer
148 views
Hello,
         Earlier we ware using Telerik version "3.5.1747.2" and now we are trying to upgrade it in Telerik Version "3.7.1990.2", When we are  trying to access Sitefinity > Module it's throwing error "Cannot find template "~/Sitefinity/Admin/ControlTemplates/Common/AdminBreadcrumb.ascx". " , In earlier version it was working fine. And when we tried to get this file from old version we didn't found this in old version too.

Steps we followed:
SitefinityLogin > Click on Modules

If any one can help me on this where I can get this file or what is the alternative way to resolve this issue.

Regards
Sujeet
Ivan Dimitrov
Telerik team
 answered on 16 Sep 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?