Tagged Questions
XAF is a DevExpress application framework allowing simultaneous ASP.NET and WinForms development.
3
votes
4answers
3k views
DevExpress eXpressApp Framework (XAF) and eXpress Persistent Objects (XPO): how do I speed up the loading time of associations?
I am having a problem with the speed of accessing an association property with a large number of records.
I have an XAF app with a parent class called MyParent.
There are 230 records in MyParent.
...
1
vote
2answers
104 views
DevExpress eXpressApp Framework (XAF) - Web Application customization
In XAF Windows Application I can customize Model at runtime using Model Editor. Is there any way to customize model at runtime when I use Web Application?
1
vote
1answer
112 views
DevExpress eXpressApp Framework (XAF) - Extension property with drop-down list
I'm trying to add an extension property to the model column that allows to select value from the drop-down list. So when I open Model Editor and choose some column in ListView I will be able to select ...
1
vote
3answers
136 views
Get navigation items in DevExpress eXpressApp Framework (XAF) application
I have a eXpressApp Framework (XAF) desktop application. The main window contains Navigation pane with tree of items. Is there any way to obtain the list of navigation items in code?
1
vote
2answers
133 views
Suitable diagramming type and tool for a model based on DevExpress Domain Components
I'm busy prototyping a training management app using the DevExpress eXpressApp framework & Domain Components. This paradigm uses interfaces to specify domain entities, with default implementation ...
1
vote
3answers
89 views
StateMachine flow in a master-detail model
I need to ask a complicated scenario, so I'll try to explain by example.
Consider the following model :
public enum States { Created, Approved, Started, Completed }
public class Request {
...
1
vote
1answer
145 views
devexpress XPO calculated property on child collection select n + 1
I have a XPO domain object Order which has a association with OrderLine. In order I have a property Profit which is implemented as
public decimal Profit
{
get
{
decimal result = 0;
...
1
vote
2answers
953 views
DevExpress eXpressApp Framework (XAF) and Continuous Integration
I have a XAF application that I've built and a nant script that runs fine on my development machine. The script uses MsBuild and the CSPROJ File to compile the project.
When the CruiseControl.net ...
0
votes
1answer
45 views
Save time like TimeSpan and parse it
I using xaf and xpo for my app.
I have TimeSpan field for time:
private TimeSpan showTime;
public TimeSpan ShowTime
{
get { return showTime; }
set { SetPropertyValue("ShowTime", ref ...
0
votes
1answer
329 views
Devexpress eXpressApp listview reading pane
We are working on an internal issue tracker-like software. When I select an issue in its list view control, I would like to display a reading pane at the bottom to show its details, comments, attached ...
0
votes
4answers
657 views
Design and Modelling for DexExpress eXpressApp Framework
The DevExpress XAF does much basis work for you, it creates a database based on your business objects, and dynamically generates a UI based on these, with basic functions like add, delete, sort etc. ...