B4J Question [Web][BANano] custom SKDataTable

FabioRome

Active Member
Licensed User
Longtime User
I’m trying to set custom values in SKDataTable but they have no effect:
it doesn’t work with EntriesText, it doesn’t work with SearchPlaceHolder, and it doesn’t work with the column where I want to perform the search:
where am I going wrong?
I want the search to work with col10
I’d also like the “Previous” and “next” text to be customized in Italian: “Precedente” and “Successivo”

Here’s the code:
B4X:
Private tblDatiElenco As SKDataTable 'ignore

    tblDatiElenco.Clear

    tblDatiElenco.Height = "100%"
    tblDatiElenco.Title = "mio testo"
    tblDatiElenco.ItemsPerPage = 5
    tblDatiElenco.EntriesText= "Item visualizzati"
    tblDatiElenco.SearchPlaceHolder = "Cerca..."
    
    tblDatiElenco.AddColumn( "Col1" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col2" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col3" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col4" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col5" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col6" , False, False, False, False)
    tblDatiElenco.AddColumn( "Col7" , False, False, False, False)
    
    tblDatiElenco.AddColumn( "Col8" , False, False, True, True)
    tblDatiElenco.AddColumn( "Col9" , False, False, True, True)
    tblDatiElenco.AddColumn( "Col10" , False, True, True, True)
    tblDatiElenco.AddColumn( "Col11" , False, False, True, True)
    tblDatiElenco.AddColumn( "Col12" , False, False, True, True)
    tblDatiElenco.AddColumn( "Col13" , False, False, True, True)

    tblDatiElenco.Render
 
Top