by Galaktikasoft | Apr 1, 2015 | Xafari Framework Blog |
Smart Design technology is based on XafariViewLayoutStrategy. It is an alternate strategy that allows us to solve specific problems in the generation of View. By default, XAF generates three Views for each persistent object: ListView, LookupListView and DetailView, we...
by Galaktikasoft | Mar 26, 2015 | Xafari Framework Blog |
Enum Property Editor displays Enum type properties with FlagsAttribute. It allows customizing representation in Application Model. You can set CheckedComboBox, CheckedListBox and standard visualization. Thus, to change the control, you do not need to create a new...
by Galaktikasoft | Mar 25, 2015 | Xafari Framework Blog |
The feature of Xafari Date Property Editor is that the cursor moves to the next part of the date (month, year) automatically as soon as the user completes the previous part (day, month). This reduces the number of user manipulations and makes data input more...
by Galaktikasoft | Mar 24, 2015 | Xafari Framework Blog |
PeriodStruct Property Editor is intended for Xafari.Base.PeriodStruct property. This property allows you to store various time interval values. It is very useful to filter the list by a column containing DateTime value. PeriodStruct Property Editor is used in Xafari...
by Galaktikasoft | Mar 23, 2015 | Xafari Framework Blog |
To select multiple objects in List View, a user needs to press Ctrl and select objects by left click. If the user accidentally clicked on the form, then only last object will be selected, and multiple selection will be canceled. This reduces the efficiency of using...
by Galaktikasoft | Mar 19, 2015 | Xafari Framework Blog |
Typically, a business object of enterprise application is accompanied by a large number of View controllers. These controllers are implementing some specific functionality of the entity. Often it is the handlers of the following events: OnDeactivated; OnActivated;...
by Galaktikasoft | Mar 17, 2015 | Xafari Framework Blog |
Xafari Server is a separate service that handles the tasks in the Message Queue, and stores the results in XAF application database. This post discusses its performance. Using the server significantly accelerated querying compared to querying in the application, even...
by Galaktikasoft | Mar 12, 2015 | Xafari Framework Blog |
This post explains how to add, customize and use Xafari Audit Module. We will create a simple demo XAF application and consider a step by step deployment of Audit in this example.We will use Xafari x07. It is worth noting that the main distinguishing feature of Xafari...
by Galaktikasoft | Mar 10, 2015 | Xafari Framework Blog |
There are some tasks (commands) that require maximum automation and minimum user interaction. In general, such conditions are satisfied by a console application that allows a user to specify the command, set parameters and start execution. Of course, all this should...
by Galaktikasoft | Mar 5, 2015 | Xafari Framework Blog |
When developing a XAF application, Security System splits users into groups according to roles. XAF concept provides that the Application Model can be configured for all users (Model.xafml file) in whole or individually for each user (Model.User.xafml file). For these...
by Galaktikasoft | Mar 3, 2015 | Xafari Framework Blog |
Xafari Server uses its own implementation of the Message Queue. Clients add tasks (hereinafter messages) to the Queue and the Server processes messages from the Queue. This post provides an example of how to implement client-server interaction via the Message Queue....
by Galaktikasoft | Feb 26, 2015 | Xafari Framework Blog |
This post explains the nuances of implementing many-to-many relationship between non-persistent Domain Components when working with Xafari x07 framework. To see the first part of this investigation, refer to the About non-persistent domain components - Xafari...