Hi
I know how to create a popup window with an action button. But what I want to do is create a popup detail window when I click on a record in a listview.
How do I do this?
C#[
CollectionOperationSet(AllowAdd = false, AllowRemove = false)]
[
XafDisplayName("Comments")]
publicXPCollection<ObjectComments> ObjectComments
{
get
{
// return GetCollection<ObjectComments>("ObjectComments");
if (_objectComments == null)
{
_objectComments =
newXPCollection<ObjectComments>(Session);
_objectComments.BindingBehavior =
CollectionBindingBehavior.AllowNone;
}
_objectComments.Criteria =
CriteriaOperator.Parse("SourceObjectGuid = ?", driverGuid);
return _objectComments;
}
}
Thanks