B4J Question [AB Material] ABMComp overlap with the navigation Bar top display

Ganiadi

Active Member
Licensed User
Longtime User
Dear Master,

I tried to create a messaging custom component through ABMComp and it overlap with the navigation Bar top display,
How can we protect this

Below is the screenshott before
:
Capture2.PNG
Capture2.PNG

And After :

Capture1.PNG


Connect Page:
public Sub ConnectPage()

    ABMShared.BuildPageHeader(page,"Guest Services")

    Dim myChat As ChatServices
    myChat.Initialize(page, "myChat")

    page.Cell(2,1).AddComponent(myChat.ABMComp)
    
    page.Refresh
    
    ' Tell the browser we finished loading
    page.FinishedLoading
    ' restoring the navigation bar position
    page.RestoreNavigationBarPosition

End Sub

Please Help..

Tks
 

Ganiadi

Active Member
Licensed User
Longtime User
What is in this sub?
Hi Harris,

It's a standard header display from ABMLabel and this should be the same with other functions in ABMShared.

I found the problem and solved now, it was from may CUSTOM ChatServices CSS that replace the entire cell format, where it should be applied for the entire
div frame class.

[SOLVED]

Tks for your Help & Reply Harris..
 
Upvote 0
Top