I have an ABMaterial app with 50+ pages. Most of the pages use ABMTables to show data.
I have added a new simple page with only a label and a table (bas file attached).
When the table is added in ConnectPage:
then the following error is shown in Chrome console. I have no other code to manipulate or add data to the table.
If i remove the page.Cell(2,1).AddComponent("atable"), no error is shown.
I have added a new simple page with only a label and a table (bas file attached).
When the table is added in ConnectPage:
B4X:
public Sub ConnectPage()
Dim lblData As ABMLabel
lblData.Initialize(page,"lblData","",ABM.SIZE_H5,False,"DataLabel")
page.Cell(1,1).AddComponent(lblData)
Dim atable As ABMTable
atable.Initialize(page,"atable",False, False, True,"tbltheme")
page.Cell(2,1).AddComponent(atable)
' refresh the page
page.Refresh
' Tell the browser we finished loading
page.FinishedLoading
' restoring the navigation bar position
page.RestoreNavigationBarPosition 'used to be in the depreciated Page_Ready() event!
End Sub
then the following error is shown in Chrome console. I have no other code to manipulate or add data to the table.
If i remove the page.Cell(2,1).AddComponent("atable"), no error is shown.
B4X:
VM212:3 Uncaught TypeError: $(...).inputmask is not a function
at eval (eval at b4j_eval (core.4.38.min.js:1), <anonymous>:3:30)
at b4j_eval (core.4.38.min.js:1)
at x.<anonymous> (core.4.38.min.js:1)
at x.dispatchEvent (core.4.38.min.js:1)
at WebSocket.<anonymous> (core.4.38.min.js:1)