This question is locked. New answers and comments are not allowed.
Hello,
is it possible to prevent the scrolling effect on iOS, if the DataForm's height is smaller than the height of the device, so scrolling is actually not necessary?
I have the following UI Definition:
<GridLayout rows="*"> <ScrollView> <GridLayout id="loginMainContainer"> <AbsoluteLayout horizontalAlignment="center"> <StackLayout id="loginLogoContainer"> <Image src="res://logo_small" /> </StackLayout> </AbsoluteLayout> <StackLayout id="loginFormContainer"> <df:RadDataForm source="{{ dataFormSource }}"> <df:RadDataForm.properties> <df:EntityProperty name="nickname" displayName="" hintText="Nickname..."> <df:EntityProperty.editor> <df:PropertyEditor type="Text" /> </df:EntityProperty.editor>
</df:EntityProperty>
<df:EntityProperty name="passwd" displayName="" hintText="Passwort..." index="1"> <df:EntityProperty.editor> <df:PropertyEditor type="Password" /> </df:EntityProperty.editor> </df:EntityProperty> </df:RadDataForm.properties> </df:RadDataForm> <Button text="Anmelden" /> <StackLayout className="text-normal-bold" marginTop="15"> <Label text="Passwort vergessen?" /> <Label text="Ich habe noch keinen Account." /> </StackLayout> </StackLayout> </GridLayout></ScrollView> </GridLayout>
You can see the behaviour of the DataForm in this GIF
Is there any way to disable this scrolling effect? On some pages we have only one textfield in the whole form, and there also is this annoying scrolling. But we want to take advantage of the validating funcionality, that's why we also use the dataform even though there is only such a small number of editors.
Best regards
