Disable Checkbox
Hi,
How do I disable checkbox?
{
type: "check_box",
item_id: "SPst",
name: "Preview Filename",
variable_Name: "bSaveWPostFx",
},
I want this checkbox to always be checked (read only/disabled) so user cannot uncheck it.
S
Hi,
How do I disable checkbox?
{
type: "check_box",
item_id: "SPst",
name: "Preview Filename",
variable_Name: "bSaveWPostFx",
},
I want this checkbox to always be checked (read only/disabled) so user cannot uncheck it.
S
Do you have the JavaScript for Acrobat API Reference? If so, you'll find it under the app methods.
Example #2 demonstrates both applying a value and setting fields as enabled/disabled.
Basically it would be something like this:
initialize: function(dialog) {
dialog.load({"SPst": true });
dialog.enable({"SPst": false });
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.