B4J Question ABMaterial Table inside amodalsheet

mauriegio

Member
Licensed User
Longtime User
Hello at all,

i created a table inside a modalsheet but show me two header !!!

How i can do ?

ABMaterial Table in Modal sheet:
Dim tbl1 As ABMTable
    tbl1.Initialize(page, "tbl1", False, False, True, "tbl1theme")
    tbl1.SetHeaders(Array As String("Product", "Color", "Tgl", "Qta", "Del"))
    tbl1.SetHeaderThemes(Array As String("headerfooter", "headerfooter", "headerfooter", "headerfooter", "headerfooter"))
    tbl1.IsScrollable = True
    tbl1.IsBordered = True
    tbl1.SetColumnWidths(Array As Int(240, 200, 100, 100, 200))
    
    myModalCar.Content.Cell(2,1).SetFixedHeight(250, True)
    myModalCar.Content.Cell(2,1).AddComponent(tbl1)
 

MichalK73

Well-Known Member
Licensed User
Longtime User
It seems to me that your ModalWindow width is too small, or the table columns are too wide when you see your code.
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…