or
I have Rad Tabstrip and Rad Multipage controls in my aspx page.
I am trying to load another aspx page to one pageview within Rad multipage.The problem is that I am getting scrollbars, both horizontal and vertical when I try to load the page within partiuclar pageview.I set the property ScrollBars="None" in Radmultipage. But that doesnt really help. Can someone suggest a work around to achive this.I don't need the scrollbars and page has to extend automaticcaly when the page in content url expands.
<
telerik:RadTabStrip
ID
=
"RadTabStrip1"
runat
=
"server"
Skin
=
""
MultiPageID
=
"RadMultiPage1"
<BR>
SelectedIndex="0"
CssClass="tabStrip"><
BR
>
<
Tabs
><
BR
>
<
telerik:RadTab
Text
=
"Case"
PageViewID
=
"RadPageView1"
><
BR
>
</
telerik:RadTab
><
BR
>
<
telerik:RadTab
Text
=
"Parties"
PageViewID
=
"RadPageView2"
><
BR
>
<
Tabs
><
BR
>
<
telerik:RadTab
Text
=
"Parties1"
Selected
=
"true"
PageViewID
=
"RadPageView2"
></
telerik:RadTab
><
BR
>
<
telerik:RadTab
Text
=
"Add\Modify Party"
PageViewID
=
"RadPageView4"
></
telerik:RadTab
><
BR
>
</
Tabs
><
BR
>
</
telerik:RadTab
><
BR
>
</
Tabs
><
BR
>
</
telerik:RadTabStrip
><
BR
>
<
telerik:RadMultiPage
ID
=
"RadMultiPage1"
runat
=
"server"
SelectedIndex
=
"0"
CssClass
=
"multiPage"
ScrollBars
=
"None"
><
BR
>
<telerik:RadPageView ID="RadPageView1" runat="server">
some content here....
</telerik:RadPageView>
<
telerik:RadPageView
ID
=
"RadPageView2"
runat
=
"server"
ContentUrl
=
"PartyDetails.aspx"
></
telerik:RadPageView
><
BR
>
<
telerik:RadPageView
ID
=
"RadPageView4"
runat
=
"server"
Height
=
"300px"
ContentUrl
=
"AddModifyParty.aspx"
></
telerik:RadPageView
><
BR
>
</
telerik:RadMultiPage
>
<
telerik:RadAjaxManager
runat
=
"server"
ID
=
"MainAjaxManager"
DefaultLoadingPanelID
=
"MainLoadingPanel"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"SurveyGrid"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"SurveyChart"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"SurveyGrid"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
<
ClientEvents
OnRequestStart
=
"onRequestStart"
OnResponseEnd
=
"onResponseEnd"
/>
</
telerik:RadAjaxManager
>
function
onToolBarButtonClicking(sender, e) {
switch
(e.get_item().get_value()) {
case
'DataSave'
:
if
(isInputValid() ==
true
) {
var
grd = $find(
'<%= SurveyGrid.ClientID %>'
).get_masterTableView();
grd.fireCommand(
'UpdateEdited'
,
''
);
}
break
;
case
'NavCancel'
:
var
grd = $find(
'<%= SurveyGrid.ClientID %>'
).get_masterTableView();
grd.fireCommand(
'CancelAll'
,
''
);
break
;
default
:
break
;
}
}
<
div
id
=
"info"
>
Hover over image for options and info <
table
id
=
"rating"
>
<
tr
>
<
td
>Rate this album:</
td
><
td
>
<
telerik:RadRating
ID
=
"RadRating1"
runat
=
"server"
AutoPostBack
=
"True"
Skin
=
"Metro"
DataSourceID
=
"AccessDataSource3"
Precision
=
"Item"
AppendDataBoundItems
=
"True"
>
<
ItemBinding
ValueField
=
"AverageRatingRounded"
></
ItemBinding
>
</
telerik:RadRating
>
</
td
>
</
tr
>
</
table
>
</
div
>
<
asp:AccessDataSource
ID
=
"AccessDataSource3"
runat
=
"server"
DataFile
=
"~/App_Data/ASPNetDB.accdb"
SelectCommand
=
"SELECT AlbumID, CountRating, Totalrating, SUM(Totalrating) / CountRating AS AverageRating, ROUND(AverageRating, 0) AS AverageRatingRounded FROM qryRating GROUP BY AlbumID, CountRating, Totalrating HAVING (AlbumID = ?)"
><
SelectParameters
>
<
asp:QueryStringParameter
Name
=
"AlbumID"
QueryStringField
=
"albumID"
Type
=
"Int32"
/>
</
SelectParameters
>
</
asp:AccessDataSource
>