Hey
Can we initialize RadListView control with Grouping that all groups are collapsed by default?
Thanks,
Mano
Hi,
Is it possible to have a transparent background on IOS?
I tried setting BackgroundColor="Transparent" and it works fine on Android but not on IOS.
Please help.
Good Day
I noted that everytime chats are loaded , one need to scroll down manually. is there a way to scroll to the bottom or the last chat item automatically ?
Thanks
Good Day
i am able to show images , video and normal text formatted based on my content templates. but it works well when loading the data in the chat control. When a User type a simple "hi" there is already a content template for outgoing messages which format this correctly when its load. my problem is that when they user type it does not use any of my content template
Author senderitem = new Author();
senderitem.Avatar = model.AUTHOR_PROFILE_PIC;
senderitem.Name = model.AUTHOR;
TextMessage textMessage = new TextMessage();
textMessage.Data = model.CHAT_MESSAGE;
textMessage.Author = senderitem;
textMessage.Text = model.CHAT_MESSAGE;
Device.BeginInvokeOnMainThread(() =>
{
chat.Items.Add(textMessage);
chat.Message = string.Empty;
});
I am trying to rotate by RadBorder to the left by -25. There are Grid with Image and Label inside and they are overlapped. Is it bug or I need to change something in my code? Help, please.
<
telerikPrimitives:RadBorder
x:Name
=
"bnSolo"
Grid.Row
=
"0"
Grid.Column
=
"0"
BackgroundColor
=
"Transparent"
>
<
Grid
BackgroundColor
=
"Transparent"
>
<
Image
Source
=
"homesolo"
/>
<
Label
Text
=
"Solo"
/>
</
Grid
>
<
telerikPrimitives:RadBorder.GestureRecognizers
>
<
TapGestureRecognizer
Tapped
=
"PlayNowButton_Clicked"
/>
</
telerikPrimitives:RadBorder.GestureRecognizers
>
</
telerikPrimitives:RadBorder
>
await bnSolo.RotateTo(-25, 500, Easing.Linear);
await bnSolo.RotateTo(25, 500, Easing.Linear);
await bnSolo.RotateTo(0, 500, Easing.Linear);
Hi everybody. Im following the getting started guide here (https://docs.telerik.com/devtools/xamarin/controls/treeview/treeview-getting-started). I have a few question: First of all I need to create the class Item and ViewModel in the general folder of the project?
Then when I arrived at this step:
<telerikDataControls:RadTreeView x:Name="treeView" ItemsSource="{Binding Source}"><telerikDataControls:TreeViewDescriptor DisplayMemberPath="Name"ItemsSourcePath="Children"TargetType="{x:Type local:Item}" /></telerikDataControls:RadTreeView>
If I copy this inside my project and then compile I get this error: "Type Item not found in xmlns" at row 13 that is this line here TargetType="{x:Type local:Item}
What am I doing wrong?
I just want to put a treeview in the app but Im not able. I tried to create the classes under UWP files, I moved all down there, delete from the main Shared part of the project but nothing.
Images attached :D
Thank you