Hi,
If somebody know how to show custom navigator form(navigator property of form) on right side of form.According servoy documentation the navigator is shown at the left or at the right side of the form, depending on the page orientation. I try with Defaultpageformat property and used 3 possible options for orientation: portrait,landscape ,reversed landscape, but it doesn’t work.
Thanks
Why not just create your own navigator and put it where you want. Just make 2 buttons and set their onAction events to functions that modify which index is selected in the foundset. For the “Prev” button, use this code:
foundset.setSelectedIndex(foundset.getSelectedIndex() - 1)
For the “Next” button, use this code:
foundset.setSelectedIndex(foundset.getSelectedIndex() + 1)
By using your own navigator, you can also make it look non-crappy.
Why doesn’t this work anymore?
foundset.setSelectedIndex(foundset.getSelectedIndex() - 1)
foundset.setSelectedIndex(foundset.getSelectedIndex() + 1)
I hate it when stuff just stops working!
Works fine here…