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

UseColumnHeadersAsSelectors=False doesn't work?

1 Answer 38 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Grzesiek
Top achievements
Rank 2
Iron
Grzesiek asked on 24 May 2008, 05:58 PM
I'm trying to off this property.

I don't want to hover days by day name. What I mean - I have enabled ShowColumnHeaders, but I don't want to have hovering all Monday when I go mouse at Monday in ColumnHeader.

Simply I want something like here:
http://www.telerik.com/DEMOS/ASPNET/Prometheus/Calendar/Examples/DatePicker/Customization/DefaultCS.aspx

but set UseColumnHeadersAsSelectors=False doesnt work for me.

Any ideas?


I have also CSSFriendlyAdapters in my project and to works RadDateTimePicker I have to use following code:
'Wyłączenie CSS Friendly Adapters 
    Private entry As New Pair() 
    Protected Overloads Overrides Sub OnPreInit(ByVal e As EventArgs) 
        DisableAdapters() 
        MyBase.OnPreInit(e) 
    End Sub 
    Protected Overloads Overrides Sub OnUnload(ByVal e As EventArgs) 
        MyBase.OnUnload(e) 
        RestoreAdapters() 
    End Sub 
    Protected Sub DisableAdapters() 
        entry.First = GetType(DataList).AssemblyQualifiedName 
        entry.Second = HttpContext.Current.Request.Browser.Adapters(entry.First) 
        HttpContext.Current.Request.Browser.Adapters.Remove(entry.First) 
    End Sub 
    Protected Sub RestoreAdapters() 
        HttpContext.Current.Request.Browser.Adapters.Add(entry.First, entry.Second) 
    End Sub 

1 Answer, 1 is accepted

Sort by
0
Konstantin Petkov
Telerik team
answered on 26 May 2008, 06:11 AM
Hello Grzesiek,

You seem to be using an older version of the product according to your downloads history. The demo here:

http://www.telerik.com/DEMOS/ASPNET/Prometheus/Calendar/Examples/Functionality/MainAreaCustomization/DefaultCS.aspx

disables the day selection by setting UseColumnHeadersAsSelectors to False. It runs with the latest version labeled 2008.1.515. I hope this helps!

Greetings,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Calendar
Asked by
Grzesiek
Top achievements
Rank 2
Iron
Answers by
Konstantin Petkov
Telerik team
Share this question
or