KeyTable tabbing does not submit data to server side script.
KeyTable tabbing does not submit data to server side script.
I have 2 column defined to use keys for tabbing.
keys: {
columns: [9, 10 ],
keys: [ 9 ],
editor: editor,
editOnFocus: true
},
However when I tab from column 9 to column 10 the editor does not submit all front end data.
Notice: Undefined index: HRYREG
file_put_contents( '/tmp/a', json_encode( $values )."\n", FILE_APPEND );
{"HRWPER":"4.00","HRWMNA":"","HRWMDT":"","HRWMTM":"","HRWDNA":"","HRWDDT":"","HRWDTM":"","HRWVNA":"","HRWVDT":"","HRWVTM":"","HRWHNA":"","HRWHDT":"","HRWHTM":""}
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi @bbrindza ,
Have you enabled the submit on blur option - see this example.
Cheers,
Colin
I have my editor submit conditioned.
As an aside these conditions also open up column 9,and 10 for editing
You need to use the
formOptions.inline
object to set defaults for theform-options
object if you are using KeyTable. The call toinline()
that KeyTable makes will then use those defaults.Allan
That did the job . Thanks Allan