This is a migrated thread and some comments may be shown as answers.

touch mode

2 Answers 41 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Troika
Top achievements
Rank 1
Troika asked on 03 Oct 2013, 01:40 PM
i know here is not the best way to ask this, but i have a webiste and i want that when user clicks on o button it changes all telerik controls to thouch skin mode and when is not on that button switch to normal

2 Answers, 1 is accepted

Sort by
0
IT
Top achievements
Rank 1
answered on 04 Dec 2013, 03:55 PM
Yes its possible to do this


onclick on the button you could dynamically change the Skin of any radcontrols on the page


0
Shinu
Top achievements
Rank 2
answered on 05 Dec 2013, 12:46 PM
Hi Troika

Try using RadSkinManager  on your page and on button click you could set Skin to Touch Mode.
Check the following code
aspx:
<telerik:RadSkinManager ID="RadSkinManager1" runat="server">
</telerik:RadSkinManager>
<telerik:RadButton ID="RadButton1" runat="server" Text="Skin Mode" OnClick="RadButton1_Click">
</telerik:RadButton>
C#:
protected void RadButton1_Click(object sender, EventArgs e)
{
  RadSkinManager1.Skin = "BlackMetroTouch";
}

Thanks
Shinu
Tags
ListBox
Asked by
Troika
Top achievements
Rank 1
Answers by
IT
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or