Thanks for watching! If you do know the answer to any of the issues I talked about in the video, please let me know! And I'm not asking for engagement, I'm asking so I know the answer!!!! :) 🕘Timestamps: 00:00 - Video Start 01:48 - Looking at the Restful API Code 10:29 - Showing that code in action 11:09 - Discussing some Frustrating Scenarios I ran into with .net Maui 14:56 - WHY IS MY COLLECTION VIEW NOT UPDATING WHEN THE DATA CHANGES 20:41 - Discussing the Roadmap further, what to expect from this series
@@ProgrammingWithChris stumbled over your channel like 2 hours ago and im really loving your content. Very great produced and i really hope you get way more attention keep going 💯 im a mostly c# developer myself for many years now and i can say you never know everything. So i know your struggles 😅
@@flobuilds 😂 Yup! I’m mostly throwing things out there to learn myself and maybe drag a few folks along with me as I go. Thanks again for the nice comment! Made my day🙏
Interesting video, thanks for sharing, coming on nice. Just a couple of things, note though I'm NOT a MAUI developer. I've no idea who/what Kroger is, I'm from the UK and our supermarkets don't really have APIs we can use - a couple do though. 1. For the click and having the code in the code behind, I understand why you want them in the MV. Could you create a custom control with the check box on it, then add in a "ClickCommand" RelayCommand to custom control, then you maybe you can use that and put the code in the MV. 2. For the sorting - again no idea on the issue, I was curious and did a couple of searches and found this extension you could try - though not tested it, but seems like it might work: public static void Refresh(this ObservableCollection value) { CollectionViewSource.GetDefaultView(value).Refresh(); }
Thanks for watching! If you do know the answer to any of the issues I talked about in the video, please let me know! And I'm not asking for engagement, I'm asking so I know the answer!!!! :)
🕘Timestamps:
00:00 - Video Start
01:48 - Looking at the Restful API Code
10:29 - Showing that code in action
11:09 - Discussing some Frustrating Scenarios I ran into with .net Maui
14:56 - WHY IS MY COLLECTION VIEW NOT UPDATING WHEN THE DATA CHANGES
20:41 - Discussing the Roadmap further, what to expect from this series
Man these videos are good lol very entertaining
ha, thanks! At least some folks can get some entertainment out of my struggles to learn this stuff... haha.
Very great video 🔥
Thanks, appreciate the kind words!
@@ProgrammingWithChris stumbled over your channel like 2 hours ago and im really loving your content. Very great produced and i really hope you get way more attention keep going 💯 im a mostly c# developer myself for many years now and i can say you never know everything. So i know your struggles 😅
@@flobuilds 😂 Yup! I’m mostly throwing things out there to learn myself and maybe drag a few folks along with me as I go. Thanks again for the nice comment! Made my day🙏
@@ProgrammingWithChris thats the way 😂👌🏻 keep doing these videos love them already
Can you make a secure call?
❤
Interesting video, thanks for sharing, coming on nice. Just a couple of things, note though I'm NOT a MAUI developer. I've no idea who/what Kroger is, I'm from the UK and our supermarkets don't really have APIs we can use - a couple do though.
1. For the click and having the code in the code behind, I understand why you want them in the MV. Could you create a custom control with the check box on it, then add in a "ClickCommand" RelayCommand to custom control, then you maybe you can use that and put the code in the MV.
2. For the sorting - again no idea on the issue, I was curious and did a couple of searches and found this extension you could try - though not tested it, but seems like it might work:
public static void Refresh(this ObservableCollection value)
{
CollectionViewSource.GetDefaultView(value).Refresh();
}