9 Answer(s)
-
0
Hi,
Do you want to create a menu item for all tenants or for just a specific tenant ?
-
0
<cite>ismcagdas: </cite> Hi,
Do you want to create a menu item for all tenants or for just a specific tenant ?
Just a specific tenant.
-
0
Hi,
This is not possible directly but, you can do it like this:
- When defining related permission for menu item, set a feature dependency like this
var sampleBooleanFeaturePermission = pages.CreateChildPermission( name: AppPermissions.Pages_Tenant_SampleBooleanFeature, displayName: L("SampleBooleanFeature"), isGrantedByDefault: false, multiTenancySides: MultiTenancySides.Tenant, featureDependency: new SimpleFeatureDependency(AppFeatures.SampleBooleanFeature) );
- Then give this permisison to only that tenant.
I hope this helps.
-
0
<cite>ismcagdas: </cite> Hi,
This is not possible directly but, you can do it like this:
- When defining related permission for menu item, set a feature dependency like this
var sampleBooleanFeaturePermission = pages.CreateChildPermission( name: AppPermissions.Pages_Tenant_SampleBooleanFeature, displayName: L("SampleBooleanFeature"), isGrantedByDefault: false, multiTenancySides: MultiTenancySides.Tenant, featureDependency: new SimpleFeatureDependency(AppFeatures.SampleBooleanFeature) );
- Then give this permisison to only that tenant.
I hope this helps.
Does not have parameter named isGrantedByDefault in CreateChildPermission. I am not able to achieve this if any full example or document available then.
Please provide us.
-
0
Hi,
Sorry, this property is deleted. The main thing here is
featureDependency: new SimpleFeatureDependency(AppFeatures.SampleBooleanFeature)
You need to define a feature and use it when defining menu item. Then in the UI, allow the tenants you want for this feature.
I hope this is clear enough.
Thanks.
-
0
<cite>ismcagdas: </cite> Hi,
Sorry, this property is deleted. The main thing here is
featureDependency: new SimpleFeatureDependency(AppFeatures.SampleBooleanFeature)
You need to define a feature and use it when defining menu item. Then in the UI, allow the tenants you want for this feature.
I hope this is clear enough.
Thanks.
Please give more information not able to achieve.
-
0
Hi,
You can follow below steps to achieve similar functionality.
- Open AppFeatures.cs and add a new feature, for example
public const string MyCustomMenuFeature= "App.MyCustomMenuFeature";
- Then open AppFeatureProvider.cs and add the feature like this.
context.Create( AppFeatures.MyCustomMenuFeature, defaultValue: "false", displayName: L("MyCustomMenuFeature"), inputType: new CheckboxInputType() );
- When defininng your menu item use this feature
.AddItem(new MenuItemDefinition( "Customers", L("Customers"), url: "tenant.customers", icon: "icon-globe", requiredPermissionName: AppPermissions.Pages_Customers, featureDependency:new SimpleFeatureDependency(AppFeatures.MyCustomMenuFeature) ) )
- Then run the application, login as host admin, open tenant list, select the tenant you want and grand that tenant the feature "AppFeatures.MyCustomMenuFeature".
In this way, only that tenant is going to see the menu item.
-
0
<cite>ismcagdas: </cite> Hi,
You can follow below steps to achieve similar functionality.
- Open AppFeatures.cs and add a new feature, for example
public const string MyCustomMenuFeature= "App.MyCustomMenuFeature";
- Then open AppFeatureProvider.cs and add the feature like this.
context.Create( AppFeatures.MyCustomMenuFeature, defaultValue: "false", displayName: L("MyCustomMenuFeature"), inputType: new CheckboxInputType() );
- When defininng your menu item use this feature
.AddItem(new MenuItemDefinition( "Customers", L("Customers"), url: "tenant.customers", icon: "icon-globe", requiredPermissionName: AppPermissions.Pages_Customers, featureDependency:new SimpleFeatureDependency(AppFeatures.MyCustomMenuFeature) ) )
- Then run the application, login as host admin, open tenant list, select the tenant you want and grand that tenant the feature "AppFeatures.MyCustomMenuFeature".
In this way, only that tenant is going to see the menu item.
Thanks Working...
-
0
Great :)