Skip to main content
Hello, good afternoon. I have a tab "summary" that contains fields of type date and I assign the default value (today) as well as in my header but the values ​​do not appear.
  • For confidentiality reasons I cannot show all the fields on the screen

 

in the corresponding fields (DAC) of my header and summary (detail DAC) I used: 
-PXDefault(typeof(AccessInfo.businessDate))]

but only works in the header date field (not in summary tab as you can see in the image above)

 

  • the screen is a customization

can you help me please? thanks

Hi @eddiedaco, The above mentioned syntax is correct to get the default date and it should work i.e. oPXDefault(typeof(AccessInfo.businessDate))]

 

I can only say that please move the underscore (_) from the DAC declarations and check once.

DACField:

 #region BiBidDate
        PXDBDate()]
        /PXUIField(DisplayName = "Bid Date")]
        public virtual DateTime? BiBidDate { get; set; }
        public abstract class biBidDate : BqlDateTime.Field<biBidDate> { }
        #endregion

 

.aspx Code:

  <px:PXDateTimeEdit ID="edBIBidDate" runat="server" DataField="BIBidDate" />

hope this helps!!

 


Hello, good afternoon. I have a tab "summary" that contains fields of type date and I assign the default value (today) as well as in my header but the values ​​do not appear.
  • For confidentiality reasons I cannot show all the fields on the screen

 

in the corresponding fields (DAC) of my header and summary (detail DAC) I used: 
-PXDefault(typeof(AccessInfo.businessDate))]

but only works in the header date field (not in summary tab as you can see in the image above)

 

  • the screen is a customization

can you help me please? thanks

 

someone could solve this problem?


Reply