Windows 7 x64, VS 2008, ASP.Net AJAX v 2010.2.826.35.
I have a page with number of multiline RadTextBoxes with ResizableContolExtenders to allow the height of the box to be increased and everything works as expected.
I'm trying to split the page into 3 tabs with 3 RadMultiPage panels and now have an issue with my ajax resizablecontrol extender location.
The resizing handle only appears in the correct place on the initially selected tab, on the unselected tab it appears in the wrong place - see images.
If I change the selected Index to 1 the 2nd tab displays correctly and the 1st tab one does not. As soon as I click the resize image it jumps to where it should be and it stays in the correct place as I move between tabs.
The handle image is identified in the CSS, position is theoretically taken care of by the control itself.
Unusually it isn't an IE issue as the same happens in Firefox.
Any ides how I can get it to draw the tabs correctly?
B
I have a page with number of multiline RadTextBoxes with ResizableContolExtenders to allow the height of the box to be increased and everything works as expected.
I'm trying to split the page into 3 tabs with 3 RadMultiPage panels and now have an issue with my ajax resizablecontrol extender location.
The resizing handle only appears in the correct place on the initially selected tab, on the unselected tab it appears in the wrong place - see images.
If I change the selected Index to 1 the 2nd tab displays correctly and the 1st tab one does not. As soon as I click the resize image it jumps to where it should be and it stays in the correct place as I move between tabs.
<asp:Panel ID=
"Pan_dataName"
runat=
"server"
Width=
"420"
Height=
"32"
ScrollBars=
"None"
><telerik:RadTextBox runat=
"server"
ID=
"dataName"
Text=
'<%# Bind("Name") %>' TextMode="MultiLine" MaxLength="300" Width="420" ToolTip="" /></asp:Panel><ajaxToolkit:ResizableControlExtender ID="rce_dataName" runat="server" TargetControlID="Pan_dataName" ResizableCssClass="resizingText" HandleCssClass="handleText" MinimumWidth="420" MinimumHeight="32" MaximumWidth="420" MaximumHeight="250" HandleOffsetX="4" HandleOffsetY="6" OnClientResizing="ResizeRadTextBox" /><br />
#copy .handleText
{
width
:
16px
;
height
:
16px
;
background-image
:
url
(../../Images/HandleGrip.gif);
overflow
:
hidden
;
cursor
:
se-resize
;
}
Unusually it isn't an IE issue as the same happens in Firefox.
Any ides how I can get it to draw the tabs correctly?
B