forget every thing i want to avoid that behavior :) https://streamable.com/4r550a
hi thanks for replay layout = null; not work my structure is the page in the menu for example (employee) user can go to it and create edit delete...etc my second page is (Hr) within it same page(employee) is partial view so what all i want is just hide (.lpx-sidebar-container, .lpx-toolbar-container) of this partial view i tried to put this in global the sidebar, toolbar of all project disappear if i put the style within (employee) screen so it will render in my partial view correct but if i open it via menu style will make sidebar disapper so i want to hide the sidebar & toolbar for employee page just in partial view for example (nth-child(2))
hi sorry i can not share the code it's a company project i didn't do any thing except this class i shared with you and video you see no code for this case into any place just it... so you can take my code i shared and try it as i mentioned before if i use only //================================================== var multiTenancySide = CurrentTenant.GetMultiTenancySide(); var allPermissionNames = (await PermissionDefinitionManager.GetPermissionsAsync()) .Where(p => p.MultiTenancySide.HasFlag(multiTenancySide)) .Select(p => p.Name) .ToArray(); //================================================== so Accounting role and Cashier role will get all permissions as admin i do not want this i want specific permissions for each of them
hi all permissions is for admin correct i want the permission i selected in my code for Accounting and Cashier role if i only used //================================================== var multiTenancySide = CurrentTenant.GetMultiTenancySide(); var allPermissionNames = (await PermissionDefinitionManager.GetPermissionsAsync()) .Where(p => p.MultiTenancySide.HasFlag(multiTenancySide)) .Select(p => p.Name) .ToArray(); //================================================== so Accounting role and Cashier role will get all permissions as admin i do not want this i want specific permissions for each of them
hi can you check this video https://streamable.com/6jc5vx
thanks
thank you it works appreciate your efforts
import { Environment } from '@abp/ng.core';
const baseUrl = 'http://posmini.devtest.sale-erp.com';
const oAuthConfig = { issuer: 'https://devtest.sale-erp.com/', redirectUri: baseUrl, clientId: 'HorizonERP_App', responseType: 'code', scope: 'offline_access HorizonERP', requireHttps: true, };
export const environment = { production: true, application: { baseUrl, name: 'HorizonERP', }, oAuthConfig, apis: { default: { url: 'https://devtest.sale-erp.com', rootNamespace: 'HorizonERP', }, AbpAccountPublic: { url: oAuthConfig.issuer, rootNamespace: 'AbpAccountPublic', }, } } as Environment;
Hi all steps and all configurations that make angular work is in images i mentioned is there a steps i miss ?