You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after multiple test, i think that we have some trouble with checkbox.
1 . Checbox must be have "exported value" ( don't now wording exact ) set. ( see that with : https://www.pdfescape.com )
After multi dump/verbose etc etc , i see that
`
if ($verbose_set) {
echo " Change checkbox of the field $name at line $field_checkbox_line to value [$value]";
}
$state = $this->value_entries["$name"]["infos"]["checkbox_no"];
when we dump var_dump($this->value_entries["$name"]["infos"]) and $this->pdf_entries ( script in and out )
we can see that value of checkox is not changed . Script change state ( $CurLine = '/AS /'. $state; ) but not the value .
So..my pdf checbox is never change.
now if u add :
$this->pdf_entries[$field_checkbox_line - 1]= '/V /' . $state; ( i change value )
It's working !!
But... maybe it's not good and cause trouble.. i don't know.
I
The text was updated successfully, but these errors were encountered:
Hello,
after multiple test, i think that we have some trouble with checkbox.
1 . Checbox must be have "exported value" ( don't now wording exact ) set. ( see that with : https://www.pdfescape.com )
`
if ($verbose_set) {
echo "
Change checkbox of the field $name at line $field_checkbox_line to value [$value]";
}
$state = $this->value_entries["$name"]["infos"]["checkbox_no"];
`
when we dump var_dump($this->value_entries["$name"]["infos"]) and $this->pdf_entries ( script in and out )
we can see that value of checkox is not changed . Script change state ( $CurLine = '/AS /'. $state; ) but not the value .
So..my pdf checbox is never change.
now if u add :
$this->pdf_entries[$field_checkbox_line - 1]= '/V /' . $state; ( i change value )
It's working !!
But... maybe it's not good and cause trouble.. i don't know.
I
The text was updated successfully, but these errors were encountered: