abmaterial

  1. PatrikCavina

    B4J Question [ABMaterial] Table cell theme name

    Why if I set the theme name of a cell in an ABMTable in "aRow1", the theme doesn't work? Example that doesn't work: public Sub BuildTheme() ' start with the base theme defined in ABMShared theme.Initialize("pagetheme") theme.AddABMTheme(ABMShared.MyTheme) ' add your specific...
  2. Mashiane

    B4J Library [ABMaterial] Creating ABMModalSheets at runtime: Part 3

    Ola This part of this class provides one with a helper class to get all events code linked to each of the components added to the modal sheet. This code is nicely written to the B4X log, so that one can copy and paste it to their pages code. This is meant to simplyfy the coding process. When...
  3. Mashiane

    B4J Library [ABMaterial] Creating ABMModalSheets at runtime: Part 2

    Ola The first post about this topic just touched the tip of the iceberg about this. I realize that I have more challenges that I need to address and I can only do justice to this if I try to cover most of the components that could be used for input. These are.. 1. Email - check 2. Website -...
  4. Mashiane

    B4J Library [ABMaterial] Clouding our Notable Members

    Ola So i'm thinking, a week or so ago I was doing qualitative data analysis for road surveys in one of our province. Whilst I was looking at the data, I decided to convert the data into a cloud, taking up most of the words that were used to make sense and establish a theme. Wala!!!. So I...
  5. Mashiane

    B4J Library [ABMaterial] Creating ABMModalSheets at runtime

    Ola Well, I'm rather exited... been wanting to do this eversince I started learning ABM. At times you just need a simple modal without the heavy load of actually building in in code. Let it rather be created at runtime and you can get/set content to it. 1. Click a button 2. Build and modal...
  6. Mashiane

    B4J Library [ABMaterial] ABM.Util.CreateThumbnail based SliceBox Image Slider

    Ola This is a wrap of a caroulse called SliceBox. The nice thing is that it adjusts itself to fit your image. If the image is small it will shrink and if large it will enlarge itself. There is a problem with that though, consisency. Whilst i did a gallery before, posted here, something like...
  7. Mashiane

    B4J Library [ABMaterial] An image slider that can actually crop your image NOT

    Ola I'm looking for an image slider. Animated - check. Do not crop an image - check. Pause - check. Open a URL on image click - check. Navigation buttons - check, Pause on hover - check. Show progress of bar when viewing each image - check. Random animation per slide - check. Play local video...
  8. Mashiane

    B4J Question [ABMaterial] Custom Component Print Functionality

    Hi there I havent tried this yet but just want to be sure. For a custom component to be printable? is there something special that you need to define when creating it or it will just work? #NewBie2ABMPrinting Thanks
  9. Mashiane

    B4J Library [ABMaterial]: MashKeyPress (Capture Keyboard Input e.g. Shift+a)

    Hi there This is in response to CableGuy's PM for this functionality here. So far the preliminary results are indicating that its working...at page level. The original js is here. Download the js files and add the necessary link to this js in BuildPage. I must admit this is some nifty piece...
  10. P

    B4J Question [ABMaterial] java.lang.RuntimeException: JSON Object expected

    Good Day, I get this error very often. is there a way to fix this error? java.lang.RuntimeException: JSON Object expected. at anywheresoftware.b4j.objects.collections.JSONParser.NextObject(JSONParser.java:50) at...
  11. Mashiane

    B4J Question [ABMaterial] [SOLVED] How to wrap ABMChips on single cell e.g. R1C1?

    Ola I have a container that im displaying in an ABMTable that has ABMChips from loaded from a table as depicted below. The container has 1 row 1 column and these are added there. How can I wrap these chips so that one is after another? Isnt there a property within the chip to perhaps do so...
  12. Mashiane

    B4J Question [ABMaterial]: How to set Text from AutoComplete id value?

    Ola ABM 4 came up with an option to add autocomplete as if one uses ABMCombo.. Dim inp1 As ABMInput inp1.Initialize(page, "inp1", ABM.INPUT_TEXT, "First Name", False, "inputauto") inp1.AutoCompleteType = ABM.AUTOCOMPLETE_STARTS inp1.AutoCompleteOpenOnFocus = True ' NEW inp1.ReadOnly = True '...
  13. Mashiane

    B4J Library [ABMaterial]: Why do I think Billboard.js is awesome?

    Ola I had had some challenges with my charts for a while, though the other potent charts I found. Morris Charts don't have legends: here is my post :( Frappe Charts can have legends but if you have many items these get cut off and you cant rotate the x axis, here is my findings and my client...
  14. Mashiane

    B4J Library [ABMaterial]: MultiPicker

    Ola This is some nice multipicker i found, it could be useful one day. mmp.Initialize(page,"days",True) mmp.AddListItem("sun","Su") mmp.AddListItem("mon","Mo") mmp.AddListItem("tue","Tu") mmp.AddListItem("wed","We") mmp.AddListItem("thu","Th")...
  15. Mashiane

    B4J Code Snippet [ABMaterial] Making an ABMCombo MultiSelect with ABMCheckboxes

    Ola So i am sitting and thinking... I need some multi-check box functionality in my combo box. I need to return the selected items and be able to set each item to be checked. Then it dawns on me. One of the nice things about the ABMCombo is the functionality to add ABMContainers to it. So it...
  16. Mashiane

    B4J Library [ABMaterial]: Creating a Multi Select with Tagging functionality

    Ola I'm currently trying to build up a select component that will enable multi select that works with tags. Rather tricky bugger.. Im using the Select2 javascript. I am able to detect which element was selected / unselected. Sub mselect_select(value As Map) Dim files As String =...
  17. Mashiane

    B4J Question [ABMaterial]: How to create dynamic data entry screens?

    Ola I have a thought of creating dynamic data entry screens, which must also have a listing of the records. What is the best approach to do this.. 1. One can create a new entity with its attributes 2. The attributes are linked to the various entry types e.g. text, checkbox, radio etc. 3. CRUD...
  18. Mashiane

    B4J Question [ABMaterial]: [SOLVED] How to get ABMUploadHandler to work with a custom file uploading component?

    Hi there I'm creating a custom component and just need to be advised in terms of how I can get it to work with ABMUploadHandler and thus trap the Page_FileUploaded sub. Working Examples (update) File Chooser-...
  19. Mashiane

    B4J Library [ABMaterial]: Attempting a profile picture file chooser

    Ola This version of a file chooser is intended for one to change a profile picture or any picture for that matter. Assumptions, you can use this to show a current profile picture / any picture anyway. When one wants to change the picture, one can click on the image which will activate a...
  20. Mashiane

    B4J Question [ABMaterial] How to make a table header an icon/png?

    Hi there I'd like to use the built in icons for my header(s) or either a png. How can I achieve this in an ABMTable? Thanks..
Top