B4J Library [ABMaterial]: MashTimeDropper

Hi there...

There is already a date time in ABMaterial, so why another time picker? As of writing, creating a custom component that will use the existing ABMaterial timepicker was more of a challenge for me and I couldnt get it working at all. This was only possible after I included the materialcss js and css files, which I dont necessarily want to do as its reloading everything all over again, so I found an interesting date picker to use in my MashTable custom component. This works with the focus event of the input box.


B4X:
Dim td As MashTimeDropper
    td.Initialize(page,"td")
    page.Cell(3,1).AddComponent(td.ABMComp)

This is now part of MashPlugins
 
Top