|
@@ -485,6 +485,8 @@ export default class TextField extends Base {
|
|
|
|
|
|
this.eventBus.dispatch('formFieldValuesChange', {
|
|
this.eventBus.dispatch('formFieldValuesChange', {
|
|
type: 'textfield',
|
|
type: 'textfield',
|
|
|
|
+ id: this.annotation.name,
|
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
pageNumber: this.page + 1,
|
|
pageNumber: this.page + 1,
|
|
contents: this.annotation.contents,
|
|
contents: this.annotation.contents,
|
|
})
|
|
})
|
|
@@ -887,6 +889,8 @@ export default class TextField extends Base {
|
|
|
|
|
|
'contents' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
'contents' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
type: 'textfield',
|
|
type: 'textfield',
|
|
|
|
+ id: this.annotation.name,
|
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
pageNumber: this.page + 1,
|
|
pageNumber: this.page + 1,
|
|
contents: this.annotation.contents,
|
|
contents: this.annotation.contents,
|
|
})
|
|
})
|
|
@@ -1092,6 +1096,8 @@ export default class TextField extends Base {
|
|
})
|
|
})
|
|
'contents' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
'contents' in props && this.eventBus.dispatch('formFieldValuesChange', {
|
|
type: 'textfield',
|
|
type: 'textfield',
|
|
|
|
+ id: this.annotation.name,
|
|
|
|
+ fieldName: this.annotation.fieldName,
|
|
pageNumber: this.page + 1,
|
|
pageNumber: this.page + 1,
|
|
contents: this.annotation.contents,
|
|
contents: this.annotation.contents,
|
|
})
|
|
})
|