B4J Question ABMaterial DateTimePicker - bug?

DarkoT

Active Member
Licensed User
Hi guys,
i need little :) help...

I try to create modalsheet with ABMaterial (which one is - btw - one of best stuff in my last years :), but I have a problem with DatetimePicker... When I use a example like:

Case "datetime"
' Dim inpDate As ABMInput
' inpDate.Initialize(Stran, Polje.Get("column_name"), ABM.INPUT_DATE, Polje.Get("column_name"), False, "")
' SubPage.Content.CellR(1,1).AddComponent(inpDate)
Dim InpDate As ABMDateTimePicker
Dim NewDate As Long = DateTime.Now
InpDate.Initialize(Stran, "inpDate", ABM.DATETIMEPICKER_TYPE_DATETIME, NewDate, "Izberi datum", "")
InpDate.CancelText = "Back"
InpDate.PickText = "OK"
InpDate.TodayText = "Today"
InpDate.Language = "en"
InpDate.ReturnDateFormat = "DD-MM-YYYY"
InpDate.ReturnTimeFormat = "HH:mm"
InpDate.FirstDayOfWeek = 0
SubPage.Content.CellR(1,1).AddComponent(InpDate)

The page will not be created - i get a error:

java.nio.file.NoSuchFileException:....\Objects\www\css\bootstrap-material-datetimepicker.min.css

It's a bug in example or ?

I will be very very thankfull when I can get some help...

Tnx, Darko
 

DarkoT

Active Member
Licensed User
Jap, exists, but not in \css\ folder; file *.css exists in same folder where is created page...

1586084694376.png
 
Upvote 0

DarkoT

Active Member
Licensed User
Ops, sory, my mistake... You have right... It's was problem with css...
Tnx...

You will get a caffe :)
 
Upvote 0
Top