Editor Standalone Edit Select Row Problem

Editor Standalone Edit Select Row Problem

vincmeistervincmeister Posts: 136Questions: 36Answers: 4

Hi Allan,

I have 5 columns in my MySQL Table
id (key), activity_category_id, start_process, finish_process, activity_head_id

| 90 | 4 | 2017-07-20 20:49:04 | **NULL **| 13 |

I want to use standalone editor to edit the finish_process field
The input is coming from value of activity_head_id from input text

How to select the row when editor.edit triggered?
My code below's not working

editor
    .edit(13)
        // 13 is the activity_head_id's value (not the key)
        // i try .edit(90) also not working. it calls .create
    //.submit();

Please advise, thank you

This discussion has been closed.