regex fix
This commit is contained in:
parent
5921bd0f6c
commit
8a0b370dd7
|
|
@ -243,8 +243,8 @@ namespace TIAMSharedUI.Pages.Components
|
|||
{
|
||||
editor.OpenComponent<DxMaskedInput<string>>(j++);
|
||||
editor.AddAttribute(j++, "Value", property.GetValue(Data));
|
||||
editor.AddAttribute(j++, "Mask", AcRegExpression.EmailMask);
|
||||
editor.AddAttribute(j++, "MaskMode", MaskMode.RegEx);
|
||||
editor.AddAttribute(j++, "Mask", AcRegExpression.EmailMask);
|
||||
|
||||
editor.AddAttribute(j++, "BindValueMode", BindValueMode.OnInput);
|
||||
//MaskAutoCompleteMode="@((MaskAutoCompleteMode)AutoCompleteMode)"
|
||||
|
|
|
|||
|
|
@ -130,7 +130,8 @@
|
|||
"UserProductMappingId",
|
||||
"UserProductToCarId",
|
||||
"ReferralId",
|
||||
"Price"
|
||||
"Price",
|
||||
"Revenue"
|
||||
};
|
||||
|
||||
/*protected override void OnAfterRender(bool isFirst)
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI.WizardModels
|
|||
LastName = obj.LastName,
|
||||
PhoneNumber = obj.PhoneNumber,
|
||||
EmailAddress = obj.EmailAddress,
|
||||
Price = obj.Price,
|
||||
Price = obj.Price
|
||||
|
||||
};
|
||||
}
|
||||
|
|
@ -45,12 +45,11 @@ namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI.WizardModels
|
|||
LastName = obj.LastName,
|
||||
ContactPhone = obj.PhoneNumber,
|
||||
ContactEmail = obj.EmailAddress,
|
||||
Price = obj.Price,
|
||||
Price = obj.Price,
|
||||
LuggageCount = Convert.ToByte(obj.NumberOfLuggage),
|
||||
//UserProductMappingId = Guid.NewGuid(),
|
||||
TransferStatusType = TIAM.Core.Enums.TransferStatusType.OrderSubmitted,
|
||||
Comment = "Transfer order",
|
||||
|
||||
Comment = "Transfer order"
|
||||
};
|
||||
|
||||
return transfer;
|
||||
|
|
|
|||
Loading…
Reference in New Issue