how to remove default value 0 from Textbox from native mobile app

0
is there any way in Mendix  how to remove default value 0 from Textbox in native mobile app. I had tried removing default value 0 for respective Attribute(integer datatype) Entity using Domain Model Still it is Showing as Default value 0 in Textbox.  Does anyone is having solution to get rid of this. 
asked
1 answers
1

When creating objects in native, the entity defaults are not used so the datatype default is used, a zero in this case.

Before opening the page, set the value to empty. Be sure to check on empty values in your validations and business logic as empty is not treated as zero in expressions!

answered