Hi,
I am trying to hide all Standard headline in my local business central version.but I am not able to hide headline.
I have created a new event and written below code. Please give any suggestion.
Thanks
Hi,
I am trying to hide all Standard headline in my local business central version.but I am not able to hide headline.
I have created a new event and written below code. Please give any suggestion.
Thanks
I'm not aware of a way to hide all default headlines in one go. You will have to apply this solution on every page that contains a headline you want to hide.
Hi Steven,
Now it's working.
But I have a small problem actually, I want to hide all default headline and showing only my custom headlines.
So is the possible hide all default headline and show only custom headlines?
Thanks for the solution.
You can do this from the client screen also, go to designer mode and hide that.
Can you try the following:
pageextension 50100 PageExtension50100 extends "Business Manager Role Center"
{
layout
{
modify(Control139)
{
Visible = false;
}
}
actions
{
}
}
It might be another rolecenter page that you are using. You can find out by going into your sandbox, then click the design option (under the menu radar), then remove the headlines, then stop design and save the file)
Hi Steven
Thanks for the reply, I have a try it ExtensionHeadlinesVisible: = False but not working.
I don't know the real code, I haven't checked it, but looking at your screenshot I would try
ExtensionHeadlinesVisible := False instead of ExtensionHeadlinesVisible := true;
;-)
André Arnaud de Cal... 291,684 Super User 2024 Season 2
Martin Dráb 230,414 Most Valuable Professional
nmaenpaa 101,156