B4J Question ABMList and ABMTable

micro

Well-Known Member
Licensed User
Longtime User
Two question:
In ABMList function AddItem and AddSubItem (view attached image) BuildSimpleItem it'snt present, why?
How I can set the fix width header cell in ABMTable?

Thanks to all.



P.S.
"I can set the fix width header cell in ABMTable?" Not with InitializeScrollable
 

Attachments

  • image.jpg
    image.jpg
    151.2 KB · Views: 292
Last edited:

alwaysbusy

Expert
Licensed User
Longtime User
I replied to you in a mail, but just for future reference for others:

BuildSimpleItem() is not a library function but something you have to write yourself. See the demo source code for some examples.

If you want fixed cell widths, you must use InitializeScrollable. This is a responsive framework and both cannot be done. So it is either: scrollable AND fixed widths, OR not being scrollable and dynamic widths.
 
Upvote 0
Top