Jump to content

emi.cavaleri

uniGUI Subscriber
  • Posts

    10
  • Joined

  • Last visited

Recent Profile Visitors

320 profile views

emi.cavaleri's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. Unfortunately I don't have mobile components but if I'll buy them I'll try your solution. Thanks.
  2. Thanks! This works for me! There's only an undesired behaviour: when I tap on the edit, the keyboard appears, but I resolved placing the TUniEdit into a TUniPanel with property enabled = false, so I cannot tap on the edit and the soft-keyboard it's never shown then I use a TUniButton that in the onclick event calls UniEdit1.SetFocus to re-set focus on the TUniEdit if needed.
  3. Yes, the client is an android industrial device with barcode scanner, to be used to scan products barcodes, show information about product scanned and store the list of products in a database (such as shopping cart in a market). I've alreadyt tried events you suggest, doesn't work, debugging I see that events only receive carriage return char and not the string scanned by barcode.
  4. "none" is not a value listed in dropdownlist, I wrote it manually in InputType property, but doesn't work for me
  5. if you go to https://inputmodes.com/ the edit with inputmode=none it's what I wish to implement in my form
  6. I use an edit because I have to receive barcode from scanner and store the string somewhere, so I need a component that have an event that allows me to read data and process it. Yes I can set the barcode text in a Caption but which component can receive the barcode from scanner?
  7. if Edit is ReadOnly, control has not focus and can't receive the string from laser beam
  8. Generally they are not editable. If barcode is damaged and I have to digit barcode manually, I can use another classic edit that shows soft keyboard.
  9. I have a professional edition. I have to write a unigui app to be installed on windows server and used via browser by android industrial devices. In this app some edit has not to display soft-keyboard because are edit that receive barcode from laser, and I don't want that android shows the keyboard cause is unuseful and will hide other parts of the form.
  10. Hi, I need on an uniGUI form an UniEdit that doesn't fire Android Soft Keyboard cause this edit will contain barcode scanned from device beam and user, most of times, doesn't write directly the barcode in the edit. I tried using combination of ReadOnly, ReadOnlyMode property but no combination works, it seems work at first time but when the control losts and then regains focus, the soft keyboard appears (and it doesn't), hiding content of the screen. Which properties and which values I have to set on TUniEdit to do this? I've tried other solutions proposed on this forum and found on web but none of them works for me. I'm using UniGUI_1.90.0.1539. My wish is to replace existing apps written in Firemonkey with unigui applications to be more independent from hardware In Firemonkey I simply realized this stuff with this instructions: FMX.Types.VKAutoShowMode := TVKAutoShowMode.Never; //in the onenter event of edit to hide soft keyboard FMX.Types.VKAutoShowMode := TVKAutoShowMode.DefinedBySystem; // in the onexit event to restore standard behaviour If setting properties on TUniEdit doesn't work, it will be possible obtain the same result injecting some javascript from unigui code? Thanks. Emilio.
×
×
  • Create New...