B4J Library [ABMaterial]: MashDateDropper

Hi there...

There is already a date picker in ABMaterial, so why another date picker? As of writing, creating a custom component that will use the existing ABMaterial datepicker 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.


This has now been added as part of MashPlugIns.

In ConnectPage...

B4X:
Dim dd As MashDateDropper
    dd.Initialize(page,"datedropper-3")
    page.Cell(2,1).AddComponent(dd.ABMComp)

Ta!
 
Top