function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
frelepfrelep 

Products authorizations for a partner portal user

Hello,

 

I have a problem with the rights of the subject product to a partner portal partner profile.Indeed, in the configuration of the profile there is the possibility of giving read rights only.

Is is possible to change a config to add the product edition?

It's to create a feature like an advanced search on products.

 

Indeed, via a Visualforce page in the portal partner, I want to show products like these two fields:

The controller is not an extension of the standard Products controller.

<apex:inputfield value="{!myProduct.FieldCheckbox__c}"/>

Result : it shows the field but in read only, I can't modify it

 

Or with this picklist which has these two values : "single" and "dual" 

<apex:inputfield value="{!myProduct.FieldPickList__c}"/>

Result : this picklist .It shows the field with the first value ("single") but in read only, I can't modify it.

 

I would used the schema to recreate the fields in the Visualforce page. But I need to also get the field dependencies....
Has someone get an idea to activate the edition of products for a partner profile or recreate all fields with dependencies in my Visualforce ?

 

Thanks in advance.