Mashiane Expert Licensed User Longtime User Feb 22, 2018 #1 Hi there Is it possible to make the ABMFileInput to be just a button, whether round etc without the area to show the text box? Thanks
Hi there Is it possible to make the ABMFileInput to be just a button, whether round etc without the area to show the text box? Thanks
Cableguy Expert Licensed User Longtime User Feb 22, 2018 #2 Why? Can you provide a case example? Upvote 0
Mashiane Expert Licensed User Longtime User Feb 22, 2018 #3 To be just like an actionbutton / floating button but will prompt you to select a file. Upvote 0
Cableguy Expert Licensed User Longtime User Feb 22, 2018 #4 then why not a "normal" button?... Upvote 0
Mashiane Expert Licensed User Longtime User Feb 22, 2018 #5 Found it, https://tympanus.net/Tutorials/CustomFileInputs/, I'm sure I can use some css also. Upvote 0
Cableguy Expert Licensed User Longtime User Feb 22, 2018 #6 OK, now I see what you meant.... literally! Upvote 0
alwaysbusy Expert Licensed User Longtime User Feb 23, 2018 #7 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
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)
jinyistudio Well-Known Member Licensed User Longtime User Apr 29, 2020 #9 Hi How to change the size of the abmfileinput button ? My ABM version is 4.30 Upvote 0