Hi guys,
How to :
1) Focus control ? By focus I mean that keyboard should pop up, and now after calling Focus nothing happens.
2) Change styling of text box ?
3) Dynamicaly load suggested items on the fly?
4) Change the message of "no items found" ?
Best Regards

I see in Xamarin.Forms there is a StickyHeaderBehaviour. How do I enable this in Xamarin Forms for iOS and Android? I did not see it under the Behaviours collection.
XAML please.
I want the header to stick as you scroll until the next header appears. Standard behaviour.
Ian
Hello!
I am trying to change default timeline in multiday calender mode with text value such as name .I have implemented telerik ui calender on my android device .
Attached 2 images i.e. Img Telerik A.png (Implemented on Device) and Img Telerik B.png (Required).
I want marked timeline in as 1 in Img Telerik A.png to change into marked text as 2 in Img Telerik B.png.
Code Snippet for calender as follows:
TelerikCalender.xaml
<telerikInput:RadCalendar x:Name="calendar" AppointmentsSource="{Binding Appointments}" AppointmentTapped="Calendar_AppointmentTapped" NativeControlLoaded="Calendar_NativeControlLoaded">
<telerikInput:RadCalendar.MultiDayViewSettings>
<telerikInput:MultiDayViewSettings VisibleDays="7"
DayStartTime="9:00:00"
DayEndTime="18:00:00"
TimelineInterval="1:00"
IsWeekendVisible="True"
IsCurrentTimeIndicatorVisible="False" />
</telerikInput:RadCalendar.MultiDayViewSettings>
<telerikInput:RadCalendar.MultiDayViewStyle>
<telerikInput:MultiDayViewStyle
AllDayAreaBackgroundColor="Beige"
AllDayAppointmentBackgroundColor="CornflowerBlue"
AllDayAppointmentTextColor="White"
CurrentTimeIndicatorColor="Blue"
AppointmentFontSize="11"
AllDayAppointmentFontSize="11" />
</telerikInput:RadCalendar.MultiDayViewStyle>
</telerikInput:RadCalendar>
TelerikCalender.xaml.cs
private void Calendar_NativeControlLoaded(object sender, EventArgs e)
{
(sender as RadCalendar).TrySetViewMode(CalendarViewMode.MultiDay);
}
Please let me know if its possible and if yes how to implement the same.
Thanks in Advance.
I need to add a side drawer to an app that has a Xamarin Forms TabbedPage as it's main page - I am aiming for the same navigation as e.g. the Twitter app on Android.
However the MainContent property of the RadSideDrawer is of type View instead of Page so I cannot set it to a TabbedPage instance.
-> Is it possible to use a TabbedPage with RadSideDrawer? If yes, how?
If this is not possible, would the standard Xamarin Forms MasterDetailPage, offer an alternative?
It has Master and Detail properties of type Page and it is used to create a side drawer in e.g. the Hanselman.Forms app (although not on a TabbedPage).
Hello Team,
I am getting Issue while Add Token Programmatically.
I am using RadAutoCompleteTextView for Adding Token Programmatically.
radAutoCompleteTextView.AddToken();
But in This AddToken Method, I have to pass parameter TokenView. But I don't know how to pass it.
I just want to add one string, like Person Name Programmatically in Token.
I spent many hours but not getting success,
So, if anyone can help me on this, it will be appreciated.
Thanks,

I want to add i.e. below a specific date like a dot to be shown below a date which will indicate that date belongs to category.
Kindly assist

Hello,
I am using MultiDay CalendarViewMode.
I configure it to hide weekend, and show 5 days.
But by default, the first day displayed is the current day. I need to change it. I would like to see a complete week : Monday to Friday, even if we are Thursday.
Can I do that ?
Thanks.
This is for UWP.
I have a SideDrawer and inside main content of side drawer I have a list view which I am binding from code behind. Now when I launch application, it renders fine, each row of list if occupying full width. Now when I maximize application, each row is now not resizing to full width. Again when I restore window size back to original, sometime it restores back to original state and sometime last column is not visible.
If I remove RadSideDrawer from xaml, its able to resize the elements well on maximize and restore.
I have created a sample application for this behavior and below is the xaml and codebehind file.
https://github.com/pbijvani/test/blob/master/MainPage.xaml
https://github.com/pbijvani/test/blob/master/MainPage.xaml.cs
attaching screenshot to show behavior.
https://github.com/pbijvani/test/blob/master/first_launch.PNG
https://github.com/pbijvani/test/blob/master/maximize.PNG
https://github.com/pbijvani/test/blob/master/restore_back.PNG
Appreciate any help on this.