Telerik Forums
UI for .NET MAUI Forum
0 answers
15 views
Microsoft discontinued .NET 7 support in May 2024. As of 2024 Q4 (November), we will deprecate .NET 7 distribution. This will give you extra time to transition from .NET 7 to .NET 8.

By upgrading to the most recent version of .NET, you will leverage the latest features, performance enhancements, and security improvements offered by both Microsoft and Telerik. This upgrade will ensure that you can make the most of the cutting-edge advancements provided by both entities.

For more information about the supported .NET versions in .NET MAUI, please review the .NET MAUI Support Policy.
Didi
Top achievements
Rank 1
 asked on 16 Aug 2024
1 answer
11 views

Hi everyone,

Currently testing MAUI Controls and wondering if I can create a custom midel class for MAUI Scheduler Appointments?

I mean, if I want to add extra data like an appoitment perdonalized guid string or something like that.

Thanks for your help.

Yana
Telerik team
 answered on 26 Aug 2024
1 answer
10 views

I'm using the .net Maui RadDataGrid.

In my case the user needs to color code several cells inside of the grid.  The user will select a color then click on the cell.  I need to be able to change the color of that cell.  How do find that cell and change the color at runtime?  One cell will be changed to red, then the next one could be blue.

Didi
Telerik team
 answered on 19 Aug 2024
0 answers
10 views
I have a radentry with is password set true and the text and the keyboard flash , if i turn is password to false it stops
kmv
Top achievements
Rank 1
 asked on 16 Aug 2024
1 answer
8 views

Hi,

Are there any plans to make Linear Gauge available as a chart type in the MAUI controls?

Thanks,

Euan

Didi
Telerik team
 answered on 16 Aug 2024
1 answer
7 views
Greetings, how can I set when loading a DataGrid one of the table properties in the disctinct value IsSelected = true, I know there are FilterDescriptor but it don't suit me as they set the value to filter and I would like to see the display above in the view with a checkbox.

DistinctValuesFilterDescriptor is work?
Didi
Telerik team
 answered on 16 Aug 2024
0 answers
8 views

I am toying around with the Chat UI and trying some different things out to see how they work, and to figure out what to use in production..

When using an ItemConverter, it seems to work great in instances where one input item results in one TextMessage, but what about in situations where one item may require 2 outputs?  Can this be handled with an ItemConverter?  (Its media attachments to a message)

 


    public class MessageChatItemConverter : IChatItemConverter
    {
        public ChatItem ConvertToChatItem(object dataItem, ChatItemConverterContext context)
        {
            Message message = (Message)dataItem;
            
            if (message.IsMMS.HasValue && message.IsMMS.Value == true)
            {
                var newMediaMessage = new ImageMessage()
                {
                    ImageSource = null,
                    Author = message.IsInbound.HasValue && message.IsInbound.Value ? message.Conversation?.ContactAuthor : message.Conversation?.MtiAuthor,
                    Text = string.Empty,
                    Data = message,
                };

                if (message.Media?.Count > 1)
                {
                    Utilities.MainThreadMessage("Warning", $"Multiple media messages are not supported: {message.MessageID} ({message.Media.Count})");
                }

                else if (message.Media?.Count == 0)
                {
                    Utilities.MainThreadMessage("Warning", $"No media loaded: {message.MessageID}");
                }

                else
                {
                    byte[]? imageBytes = message.Media?[0]?.ImageBytes;

                    if (imageBytes == null)
                    {
                        Utilities.MainThreadMessage("Warning", $"No image bytes loaded: {message.MessageID}");
                    }

                    else
                    {
                        newMediaMessage.ImageSource = ImageSource.FromStream(() => new MemoryStream(imageBytes));
                    }
                }

                return newMediaMessage; 
            }


            TextMessage textMessage = new TextMessage()
            {
                Data = message,
                Text = (message.IsMMS.HasValue && message.IsMMS.Value == true) ? "<Media Message>" : string.IsNullOrEmpty(message.Body) ? "<No Message>" : message.Body,
                Author = message.IsInbound.HasValue && message.IsInbound.Value ? message.Conversation?.ContactAuthor : message.Conversation?.MtiAuthor,
            };

            return textMessage;
        }

lukerobi
Top achievements
Rank 1
Iron
 asked on 15 Aug 2024
1 answer
24 views

Added a RadCollectionView to an app and it's causing crashes on iOS devices (but not the simulator) whenever data is loading or finished loading.  Near as I can tell, the crash is occurring because of XAML binding failures.  I've attached a sample project which shows the failures (you might have to scroll the collectionview to see them). The data still appears, though.

The actual app has a retrieve button on the screen that the user taps after entering some retrieval arguments.  I can see data being populated in the RadCollectionView followed by an immediate crash on the physical device.

 

Lance | Senior Manager Technical Support
Telerik team
 answered on 08 Aug 2024
1 answer
11 views

Good morning,

Is it possible to always default to the Time selection when the picker is opened instead of the date?

When I first open the picker it looks like this:

If I switch to the Time selection and close out of the same picker and open it again it's on the Time selection:

I would like for the picker to always open on the time selection, thank you!

Yana
Telerik team
 answered on 08 Aug 2024
1 answer
15 views
So I am running into an issue where the content of the listview may be updated or changed, but the sorting does not reflect the changes.  Is there a way trigger the listview to resort the list without clearing the sorting descriptors and adding them back?
Yana
Telerik team
 answered on 07 Aug 2024
Top users last month
pleaseDeleteMyAccount
Top achievements
Rank 2
Herman Muliady
Top achievements
Rank 1
Kevin
Top achievements
Rank 2
Iron
Iron
Andres
Top achievements
Rank 1
Iron
Bradley
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?