Agenda:
- Introductions
- Announcements
- XPO Offline Sync Demo
- Tasty Demo
- Best Practices
Agenda:
Agenda:
Questions to discuss:
Here is the video of the event:
If you need hosting for your XAF application take a look to Contabo VPS. We have been using it for more than 10 years with great results.
Disclaimer: We are affiliate it to Contabo. Profits generated by this link will be used for covering cost of Meetup subscription, XAFers Weekly hosting and other community events.
Browsing the support center I found this nice trick to focus the accordion navigation control with a shortcut.
As always, I decided to (besides bookmark it ?) do a quick post to refer to it later on.
So, let’s see it in action:
Let’s do this together. Let’s review all XAF modules, one by one each week.
First, all official DevExpress modules, then all community modules, LLamachant modules, Ultra modules, eXpand and more…
So when are we starting? We already did ?
Audit Trail Module
See you next time. XAF out!
Yes I did, inspired by my friend and DevExpress MVP Joche I decided to give it a try and start my own channel, also Javier Suarez in .Net Conf Xamarin sounds like me (a thick Spanish accent) so why not? If you are interested in XAF, XPO and Xamarin (and if you are here, you probably are) then subscribe and I will try to have new content every 15 days or at least monthly.
What would you guys think about a series of videos reviewing all XAF modules, the ones from DevExpress first and then all modules done by the community?
Here is the link for the channel:
https://www.youtube.com/channel/UCcdGHZn-LT6jloM6D10AZhA
Lastly, I am really excited to say that xafers.training is finally live. We plan to host sessions two Saturdays a month covering XAF, XPO, Xamarin and a lot more. We are starting with 5 courses:
Well, that is it for today. See you next time. XAF out!
First, I have to admit CSS and Javascript are not my stronger points. With that out of the way, some times a simple change makes a big difference in the appearance of your app.
Well, let’s change the color of the header bar in our XAF Web application.
public class AddStyleController : ViewController { protected override void OnViewControlsCreated() { base.OnViewControlsCreated(); LiteralControl style = new LiteralControl(); style.Text = "<style type='text/css' scoped>.white { background-color: palegreen; }</style>"; ((Control)View.Control).Controls.Add(style); } }
And good to go:
Source Code: https://github.com/jjcolumb/BlogDemo
Until next time, XAF out!
Well, this was easier than I thought.
The idea here is not load any data in the ListView until the user actually does a search (using the Full Text Search action).
Not loading data, that is easy, just pass a Criteria you know won’t apply.
Now it comes the neat part.
I got a request for a small feature that I believe it is really handy. The idea is from the LookupListView to have an action (a pencil icon) that when executed open the object DetailView where then it can be modified.
Ok, let’s see the code and the end result:
I am really excited to say I was invited to speak at CodeCampSDQ. My talk would be about Real world experiences using advanced ORMs in the mobile ecosystem. Translation: I will be talking about XPO and Xamarin.
Abstract: In this talk, I will guide you on why and how to choose an ORM that reduces the cost of development, makes your model database-agnostic while keeping a consistent performance.
Date is May 30 so I hope to see a few of you over there 🙂
Update: Conference has been postponed due to COVID-19. There is not new date set yet so I will update it here as soon as I have more information.
Can’t wait!
See you next time. XAF out!