Can I make checkbox required? - docusignapi

According to answer https://support.docusign.com/s/question/0D51W000069k9V3SAI/how-to-make-a-checkbox-mandatory checkboxes are always optional fields when signing. But this answer was 2 years ago.Is it possible to make a checkbox required now?

Checkbox can be either checked or unchecked.
You can decide what is the default. Change it to checked.
If you mean you want the checkbox to be always cheked - it has to be readonly and marked checked by your code.

Related

How to validate CheckBox in Kentico 8.2?

I am working in Kentico 8.2, and I want the user to have to accept all of the terms and conditions. For this, I am using a check box. If that check box is unchecked then user will not be able to submit the form.
This is not achievable through Kentico help which says that I can achieve it by making the check box multiple choice. I have done this and it works but I want the check box's own validation to work.
I cannot attach a picture here otherwise I would show you guys what I have done so far.
If anyone has a solution then please help.
Do you use the basic Kentico forms module?
You can use Validation on a field.
in the Forms module:
new field "conditions"
check "Required"
default value unchecked
Validation "Add validation rule"
select General condition
Enter text > press edit and in the code tab add the following macro:
{%conditions.Value == 1%}
add an error message
dont forget to press Apply and save the field
This worked in my sample.

How can I clear just enabled fields from FormPanel?

I have a form panel (GXT from Sencha) with 3 fields. One of them is disabled. I want to implement clear button which will clear just enabled fields and will leave the value of disabled field. How can I do this?

Checkboxes using docusign api which are selected and editable at same time

I have created checkbox using docusign api, i am having problem while making it selected and editable at same time.Please help me in this.
To make a tab editable by the signer/recipient, you need to set the locked property to false. (i.e., The templateLocked property does something different altogether -- you don't need to set that property.)

JSF getting current state of the check-box

I am working on a JSP project, and I need a functionality that
whenever the check-box is checked, users are REQUIRED to choose an option (from a dropdown menu)
However, whenever the check-box is unchecked, picking an option will not be required.
Right now, my check-box looks like this:
<h:selectBooleanCheckbox class="someClass" value="#{someBean.check}" />
the check is a boolean value in my JAVA class, and my html page should be able to recognize the state of checkbox.
I am wondering how to apply the current state to my dropdown menu, so my dropdown menu will know if user needs to pick one option or not..
Will the use of Ajax listner work in this case?
How to get state of SelectBooleanCheckbox in Ajax Listener?
Or there's any other suggestions?
Thanks a lot!
my previous related question
Conditionally make inputs required depending on checkbox value

Default selection of checkbox group

I wanted to put checkbox in my cognos 8 report based on some condition i.e if condition is true checkbox will appear with click mark and if it is not then without click mark.
I'm assuming you are placing this control on a prompt page...
It's kind of convoluted, but here's the only way I know how to do it. You can place 2 "Value Prompt" controls on your prompt page, and set the "Required" property to "No" on both. Set the "Parameter" property to be the same for both prompts (i.e., they will apply the same filter criteria on your query). For one of the prompts, set the "Default Selections" property so that your default value will be automatically selected on one of the controls. Also, be sure to set the "Select UI" property to "Check Box Group" (even if you only have one value to be checked) so you get a check box control.
Now that your controls are setup, you need to place them on your prompt page and apply a conditional render variable to both controls (you can look it up in Help if you aren't sure how to do this -- it's simple, but too lengthy to describe here). Basically, when your query condition is true, render the one with the check box clicked, otherwise render the one without. I not sure about the version support for the "Render Variable" property, but it works in version 8.4.
There isn't a way to my knowledge to dynamically select a default value on a prompt by linking it directly to a query -- You have to go through the conditional formatting/rendering approach.
yes i completely agree with jamey this is the only known way to do this.
there is another much difficult way to do it is by writing a java code which pretty much does tha same.
so i suggest you stick with jamey's solution.
as far as the version question comes, the 'render variable' property works the same in all versions of cognos 8 i.e. 8.2, 8.3 and 8.4.

Resources