Hi,
I am using simple form layout control in our app and incorporate sap.m.Input control in it. But the issue is that When I fill something in the input control and click someWhere outside of control in screen. The Input control become blank.
Please suggest something.
Thanks in Advance
Somdutt
did you wrote "change" event for that input ?
are you using odata model v2 and setting DeferredGroups to it ?
If you are using data binding to the input field and if it is incorrect, this behaviour will arise.
please paste you code for better analysis.
Best Regards,
Mahesh
Hi All,
Please find the code which I have used in my Application.
I have not used any change event for input control.
Actually I am performing CRUD operations. But it is also issue coming when I try to create data.
new sap.m.Text({text:"Maximum"}).addStyleClass("simpleFormAlignRight"),
new sap.m.Input("para_infoMaximumInput",{
enabled:"{dataEdit>/enabled}",
value:"{parameterOtherValue>/Parameter_Threshold/0/maximum}"
}),
new sap.m.Text({text:"Minimum"}).addStyleClass("simpleFormAlignRight"),
new sap.m.Input("para_infoMinimumInput",{
enabled:"{dataEdit>/enabled}",
value:"{parameterOtherValue>/Parameter_Threshold/0/minimum}"
}),
Please suggest Somthing.
Thanks & Regards
Somdutt Sharma