Hello guys
One of my selector field can’t inserting data in the field. when I selected data it’s disappearing from the field.
suggest me guys
Thanks
Hello guys
One of my selector field can’t inserting data in the field. when I selected data it’s disappearing from the field.
suggest me guys
Thanks
Hi,
Here is the example.
#region IntegrationID
PXDBString(30, IsKey = true, IsUnicode = true, InputMask = "")]
PXDefault()]
PXUIField(DisplayName = "Integration ID", Required = true)]
PXSelector(typeof(Search<SOAMSetup.integrationID>), typeof(SOAMSetup.integrationID), typeof(SOAMSetup.description), typeof(SOAMSetup.integrationType))]
public virtual string IntegrationID { get; set; }
public abstract class integrationID : IBqlField { }
#endregion
And also, it seems Auto-Numbering field, which means value will be auto-generated, you no need to enter any value.
If you wanted to enter the value manually, then you need to change the configuration to the Manual Numbering checkbox in the Numbering Sequences screen.
For more info: here is the article for your reference.
https://asiablog.acumatica.com/2018/05/auto-numbering-customization.html
Hi
when I selecting existing number it’s not settle down.
Hi
Dac field here we go
"PXDBString(15, IsKey = true, IsUnicode = true, InputMask = "")]
PXUIField(DisplayName = "Inspection", Required = true)]
PXDefault()]
AutoNumber(typeof(SSPSetup.inspectionNumberingID), typeof(AccessInfo.businessDate))]
PXSelector(typeof(Search<SSPInspect.inspNbr>),
typeof(SSPInspect.inspNbr),
typeof(SSPInspect.inspCode),
SubstituteKey = typeof(SSPInspect.inspNbr),
DescriptionField = typeof(SSPInspect.inspCode))]
public virtual string InspNbr { get; set; }
public abstract class inspNbr : PX.Data.BQL.BqlString.Field<inspNbr> { }
<px:PXFormView ID="form" runat="server" DataSourceID="ds" DataMember="Inspection" Width="100%" Height="100px">
<Template>
<px:PXLayoutRule ID="PXLayoutRule1" runat="server" StartRow="True"></px:PXLayoutRule>
<px:PXLayoutRule runat="server" ID="CstPXLayoutRule53" StartColumn="True" ></px:PXLayoutRule>
<px:PXSelector CommitChanges="True" runat="server" ID="CstPXSelector61" DataField="InspNbr" ></px:PXSelector>
<px:PXSelector CommitChanges="True" runat="server" ID="CstPXSelector60" DataField="InspCode" ></px:PXSelector>
</px:PXFormView>
Hi
>PXDBString(15, IsKey = true, IsUnicode = true, InputMask = "")]
PXUIField(DisplayName = "Inspection", Required = true)]
AutoNumber(typeof(SSPSetup.inspectionNumberingID), typeof(AccessInfo.businessDate))]
PXSelector(typeof(SSPInspect.inspNbr),
typeof(SSPInspect.inspCode))]
public virtual string InspNbr { get; set; }
public abstract class inspNbr : PX.Data.BQL.BqlString.Field<inspNbr> { }
Hi
Hi
Hi
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.