B4J Question [ABMaterial]: How to make ABMFileInput to be just a button?

Cableguy

Expert
Licensed User
Longtime User
Why? Can you provide a case example?
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
then why not a "normal" button?...
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
OK, now I see what you meant.... literally!
 
Upvote 0

alwaysbusy

Expert
Licensed User
Longtime User
I've added a new property in ABM 4.25 so you can control the visibility of the input field part.

B4X:
Dim inp1 As ABMFileInput
inp1.Initialize(page, "inp1", "Select a file", "Open", True, "input", "button")       
inp1.InputFieldVisibility = ABM.VISIBILITY_HIDE_ON_SMALL_ONLY
page.Cell(2,1).AddComponent(inp1)
 
Upvote 0

jinyistudio

Well-Known Member
Licensed User
Longtime User
Hi

How to change the size of the abmfileinput button ? My ABM version is 4.30
 
Upvote 0
Top