We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys, I think this plugin is awesome but I´m having some troubles placing a form inside slides.
I want to make a 3 step form but the keyboard keeps overlapping on the fields.
I think some how the problem is inside de <slide> tag
<slide>
Is there any workarroud or suggestions for this not to happen?
Here is the code.
<slides #formSlider pageHeight="500" [pageIndicators]="false"> <slide slideHeight="80%"> <GridLayout columns="*" rows="*,50"> <StackLayout col="0" row="0" style="background: purple;"> <TextField class="field" hint="Nombre(s)"></TextField> <TextField class="field" hint="Apellidos"></TextField> <GridLayout rows="60" columns="*,*,*"> <TextField class="field" col="0" hint="Día"></TextField> <TextField class="field" col="1" hint="Mes"></TextField> <TextField class="field" col="2" hint="Año"></TextField> </GridLayout> <TextField class="field" hint="Lugar de naciemiento"></TextField> <TextField class="field" hint="CURP"></TextField> <TextField class="field" hint="Estado civil"></TextField> <TextField class="field" hint="Religión"></TextField> <TextField class="field" hint="Nombre(s)"></TextField> <TextField class="field" hint="Apellidos"></TextField> <GridLayout rows="60" columns="*,*,*"> <TextField class="field" col="0" hint="Día"></TextField> <TextField class="field" col="1" hint="Mes"></TextField> <TextField class="field" col="2" hint="Año"></TextField> </GridLayout> <TextField class="field" hint="Lugar de naciemiento"></TextField> <TextField class="field" hint="CURP"></TextField> <TextField class="field" hint="Estado civil"></TextField> <TextField class="field" hint="Religión"></TextField> </StackLayout> <StackLayout col="0" row="1" style="background: yellow;"> <Button class="boton-primary next" text="Siguiente >" (tap)="nextStepForm()"></Button> </StackLayout> </GridLayout> </slide> <slide> <!-- SECOND PART OF THE FORM --> </slide> <slide> <!-- THIRD PART OF THE FORM --> </slide> </slides>
The text was updated successfully, but these errors were encountered:
This just an idea but maybe try putting a scrollview inside of the <slide> that wraps the grid layout?. I believe that should resolve your issue.
Sorry, something went wrong.
No branches or pull requests
Hi guys, I think this plugin is awesome but I´m having some troubles placing a form inside slides.
I want to make a 3 step form but the keyboard keeps overlapping on the fields.
I think some how the problem is inside de
<slide>
tagIs there any workarroud or suggestions for this not to happen?
Here is the code.
The text was updated successfully, but these errors were encountered: