Startseite › Foren › Deutsches LiveCode-Forum › MobilePick Field › Antwort auf: MobilePick Field
Hallo Klaus,
das mit dem Retsina habe ich erst jetzt gesehen. Das war wahrscheinlich die Vorfreude auf den Ouzo beim Griechen, den ich nach dem Post mit meiner Familie aufgesucht habe…
Der Picker erscheint jetzt zwar woanders als beim direkten Aufruf über den Button, aber leider nicht über dem Button selber. Und da auf der Card noch weitere Choice Abfragen sind,
ist die Lösung noch nicht zufriedenstellend.
Ich habe den Entwickler aus dem Bug Report auch nochmal angeschrieben. Er hat mir geantwortet :
Assuming you created an invisible field “someTempControl” with a handler(set by script) “YourHandler”
Example:
Command Yourhandler
DoPicklist
End YourHandler
The to use it do this:
dispatch “YourHandler” to field “someTempControl” of this card – this will do the picklist via the card script “DoPickList”
send “DeletePopUpField” to this card in 0 seconds – this will delete the field when done
Have 2 handers on the card script:
Command DoPickList
do your picklist and process the result as you your needs require HERE
End DoPickList
Command DeletePopUpField
Delete control “someTempControl” of this card
End DeletePopUpField
Weißt du was es mit dem ” DeletePopUpField” to this card in 0 seconds”
auf sich hat ?