17. Januar 2025 16:19
pageextension 50056 CustomerPageExt extends "Customer List"
{
layout
{
modify("No.")
{
ApplicationArea = All;
StyleExpr = StyleExprTestProd;
}
}
trigger OnOpenPage()
begin
CompanyInformation.get();
end;
trigger OnAfterGetRecord()
begin
if CompanyInformation."System Usage" = CompanyInformation."System Usage"::Test then
StyleExprTestProd := 'Unfavorable'
else
StyleExprTestProd := 'Standard';
end;
var
CompanyInformation: Record "Company information";
StyleExprTestProd: Text;
}Heute 11:54
#product-menu-bar {
background-color: #6152C6;
}
#product-menu-bar button {
border: 0;
background-color: #6152C6;
margin: 0;
}
#product-menu-bar button:hover {
background-color: #5142B6;
}
#product-menu-bar button:hover span {
color: #ffffff;
}