hi, hoping someone can help me figure out how to resolve this issue
We created a new action button in customer screen, on that button action, we are showing user a popup with input control to enter some value and two button either to Submit the data or to Cancel. The issue is, we are only able to get the value on Submit button action if the user tabs out after entering the value (or clicks out of the input field before clicking on submit. If the user doesn’t hit tab (or click out) then this entered value is not getting passed with the submission. We also have commit changes for the input control. Below is sample code.
Any help would be much appreciated.
```
<px:PXSmartPanel runat="server" Height="150px" Width="400px" ID="PXSmartPanel" LoadOnDemand="True" AutoRepaint="True" ShowAfterLoad="True" CaptionVisible="True" Caption="Apply Tiara Points" Key="Filter">
<px:PXFormView runat="server" ID="PXFormViewFilter" Width="100%" DataSourceID="ds" DataMember="Filter">
<Template>
<px:PXLayoutRule runat="server" ID="CstPXLayoutRule9CTS" StartColumn="True" ColumnWidth="XL" />
<px:PXNumberEdit runat="server" CommitChanges="True" DataField="DataField11" ID="edDataField11" />
<px:PXPanel runat="server" ID="SerialPanelCTS" SkinID="Buttons2" Height="30px">
<px:PXButton runat="server" ID="edSubmitData" DialogResult="OK" CommandSourceID="ds" CommandName="SubmitData" />
<px:PXButton runat="server" ID="edCancelData" Text="Cancel" DialogResult="Cancel" CommandSourceID="ds" CommandName="CancelData" /></px:PXPanel></Template></px:PXFormView></px:PXSmartPanel>