Form view on portal

Jack62
Giga Guru

Afternoon all.

I seem to have an issue in which users viewing their requests (form view not ticket view) are seeing the ticket in the default view rather than self service. Its fine for incident, again using form view (Requirement) they get the reduced portal view. I have looked at the widget and tried various things but cant seem to force requests to load in self service view.

 

Any thoughts?

 

JAck

 

1 ACCEPTED SOLUTION

Hi Jack, On change_request you can create an sp view. Can even be a copy of the default view. That way you do not have to customize widgets.

View solution in original post

11 REPLIES 11

Add this to the options for the widget instance:

"view": {
		"value": "sp",
		"displayValue": "sp"
	},

sp is the name of the view you want to enforce.

 

So like this:

find_real_file.png

This is great information!!! However, where did you get it from? I searched DOCS to see if I could find "omitHeaderOptions" and for "disableUIActions" and received zero hits.

What other JSON format choices are there? I'd like to hid the "attachment" button on the portal form and this looks like the perfect spot to specify that... if I knew the wording.

Thanks,

Jack62
Giga Guru

Hey

 

That has worked for all but change request, and its because the sp view does not have change_request included. how would I set it to use a different view depending on what table the record is pulling from?

 

Thanks

 

Jack

You are suppose to use view rule, which works fine in both native ui and portal.


Please mark this response as correct or helpful if it assisted you with your question.

Hi Jack, On change_request you can create an sp view. Can even be a copy of the default view. That way you do not have to customize widgets.