What is wrong with this code?
Code: Select all
If ContainerMobile(#PB_Any, #PB_Mobile_Page, "padding-top:8px", "3lists")
If ToolBarMobile(0)
ButtonMobile(#PB_Any, "LEFT", #PB_Mobile_Left)
If ContainerMobile(#PB_Any, #PB_Mobile_Row, "")
ListMobile(1, #PB_Mobile_InSet)
AddListMobileItem(1, "InSet1", #PB_Mobile_Header)
AddListMobileItem(1, "Item 1")
AddListMobileItem(1, "Item 2")
ListMobile(2, #PB_Mobile_InSet)
AddListMobileItem(2, "InSet2", #PB_Mobile_Header)
AddListMobileItem(2, "Item 1")
AddListMobileItem(2, "Item 2")
ListMobile(3, #PB_Mobile_InSet)
AddListMobileItem(3, "InSet3", #PB_Mobile_Header)
AddListMobileItem(3, "Item 1")
AddListMobileItem(3, "Item 2")
CloseMobileContainer()
EndIf
ButtonMobile(#PB_Any, "RIGHT", #PB_Mobile_Right)
CloseMobileContainer()
EndIf
CloseMobileContainer()
EndIf

Is it possible to display three columns side by side?
Thank you in advance
