Cancel and Save button in survey questionnaire

johnney
Kilo Contributor

Good Day,

Is it possible to disable the Save button and change the redirect link of the Cancel button?
save and cancel.PNG

1 ACCEPTED SOLUTION

Mrinmoy Koley
Kilo Expert

It calls an UI page "assessment_take2".



You can modify and comment out respective button tags.



Thanks,


Mrinmoy


View solution in original post

16 REPLIES 16

snowcone
Mega Guru

I did it this way and it worked: Go to UI Pages and open "assessment_take2.do" and modify the line. 

<j:set var="jvar_hideSave" value="${sysparm_hide_save}" />

to

<j:set var="jvar_hideSave" value="true" />

 

Hope this helps. Thanks

snowcone, 

This did not work for me..  do you have other suggestions?

Daniel Woods1
Mega Contributor

We have a similar issue, except the user wants the save button to appear on the vendor surveys.  We get the Submit / Save / Cancel buttons with our local network people taking the survey.  However, when we take the survey in a private browser (as if we were a vendor), the Save button is not visible.  How do I get the Save button to be visible for our vendors whom will take the survey?

Phonsie Hevey1
Tera Expert

I added the CSS below to the instance of the widget where we didn't want these buttons showing. This worked. I think this is preferable to updating the widget or the UI Page due to the upgrades.

.btn-default {
  display: none; 
}

Kind regards,

Phonsie

This displays no buttons. I only want the save button to be removed..  Ideas?