Anhy
Anhy

Reputation: 17

How to add to a custom graph activities button?

I created my own DAC and Graph following the framework guidelines, but I want to show Activities button on the right corner on the screen, how can I show this button? Is there an attribute? or an special field on the dac?

Upvotes: 0

Views: 135

Answers (1)

Brian Stevens
Brian Stevens

Reputation: 1941

Your DAC needs a NoteID field, and then you can set ActivityIndicator = True on the primary view.

DAC

#region NoteID
[PXNote()]
public override Guid? NoteID { get; set; }
public new abstract class noteID : PX.Data.BQL.BqlGuid.Field<noteID> { }
#endregion

Customization Project - ActivityIndicator

Activity Indicator

Upvotes: 2

Related Questions