Telerik.Web.UI.
RadWindow window = radWindowManager.Windows[0];
window.VisibleOnPageLoad =
true;
Telerik.Web.UI.
RadWindow window = radWindowManager.Windows[0];
window.VisibleOnPageLoad =
false;
window.Dispose();
<telerik:RadWindowManager ID="radWindowManager" runat="server">
<Windows>
<telerik:RadWindow ID="radWindowConfirm" runat="server" VisibleOnPageLoad="false"
Skin="Vista" Title="Error(s)" Behaviors="Close,Move" Modal="true" Height="200px">
<ContentTemplate>
<asp:Label ID="lblDuplicate" runat="server" ForeColor="Red" Text="<%$ Resources:ValidationMessages, DuplicateEntry %>" />
<asp:Button ID="btnConfirmOk" Text="OK" runat="server" OnClick="btnRadConfirm_Click"
Visible="false" />
<asp:Button ID="btnConfirmCancel" Text="Cancel" runat="server" OnClick="btnRadNotConfirm_Click"
Visible="false" />
</ContentTemplate>
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
<
add key="Telerik.EnableEmbeddedSkins" value="false" />
<
add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<
add key="Telerik.Skin" value="MySkin" />
I punt also on the page the theme MySkin.
I can see that all css are loaded but the controls are rendered without style.
I don't know if this approche is the best way for what i want to do.
Also set the information in the web.config is not a solution because the skin is different by customer (I would like to put this in the cs of the master page).
I found a lot of informations, documentations, video etc ... but nothing is very clear for my problem.
I try also differents approche but nothing work.
I'm using the telerik control version 2009.3.1103.20
Is it a problem for the style builder? do i need to migrate to the laste version of telerik?
Could you please help me with this.
In advance thanks,
Edwin.
<
telerik:RadSlider
ID
=
"slidersteps"
runat
=
"server"
Value
=
"0"
ItemType
=
"Item"
Width
=
"738px"
Height
=
"40px"
DecreaseText
=
"Previous"
IncreaseText
=
"Next"
SelectionStart
=
"1"
ShowDecreaseHandle
=
"False"
ShowIncreaseHandle
=
"False"
OnClientBeforeValueChange
=
"clientBeforeValueChange"
AutoPostBack
=
"true"
>
<
Items
>
<
telerik:RadSliderItem
Text
=
"Select Product"
Value
=
"PRODUCT"
/>
<
telerik:RadSliderItem
Text
=
"Select Subscription"
Value
=
"SUBSCRIPTION"
Enabled
=
"false"
/>
<
telerik:RadSliderItem
Text
=
"Registration Details"
Value
=
"REGISTRATION"
Enabled
=
"false"
Visible
=
"false"
/>
<
telerik:RadSliderItem
Text
=
"Payment Method"
Value
=
"METHOD"
Enabled
=
"false"
/>
<
telerik:RadSliderItem
Text
=
"Confirmation"
Value
=
"CONFIRM"
Enabled
=
"false"
/>
</
Items
>
</
telerik:RadSlider
>
Visible="false" and with items that not enabled, it is still clickable. any idea?