How do i update two different rows with same value for a field

How do i update two different rows with same value for a field

Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1
edited February 2 in Free community support

I want to select two rows and update the comment field with the same value but with different LogID . I have created this editor for a different table but linking with a seprate page. If i update one row it works fine but with two rows it does not and throws an error.

THe commented part is working perfect for one id but i want to select two or more rows and update them with the same comment

 var commentEditor = new $.fn.dataTable.Editor({
            ajax: "../../ajax/at/issueLog/comments.php",
            table: "#commentsTable",
            fields: [{
                label: 'Defect Log ID',
                name: 'logID',
                type: 'hidden'
            },
            {
                label: 'Comment',
                name: 'comment'
            },
            ],
        });
     
        commentEditor.on('initCreate', function (e, node, data) {

   // var selectedRowsData = table.rows({
        //     selected: true
        // }).data();
        // if (selectedRowData) {
        //     commentEditor.field('logID').val(selectedRowData.id1);
        // }


            var hardcodedLogIDs = [8, 9];
            commentEditor.field('logID').multiSet("row_8", "row_9");
        });

Edited by Allan - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.

Answers

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    and throws an error.

    What is the error?

    Allan

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1
    edited February 2

    This is the error

    and this is the serverside script for commenteditor.

    <?php
    
    include_once("./../utils.php");
    $userID = check_session();
    if (isset($_POST["id"])) {
        $ID = $_POST["id"];
    } else {
        $ID = null;
    }
    include("../../lib/DataTables.php");
    
    use
    DataTables\Editor,
    DataTables\Editor\Field,
    DataTables\Editor\Format,
    DataTables\Editor\Join,
    DataTables\Editor\Mjoin,
    DataTables\Editor\Options,
    DataTables\Editor\Upload,
    DataTables\Editor\Validate,
    DataTables\Editor\ValidateOptions;
    
    Editor::inst($db, 'defect_log_comments C', 'id')
        ->fields(
            Field::inst('C.dlc_defect_log_id', 'logID'),
            Field::inst('C.dlc_comment', 'comment'),
            Field::inst('C.dlc_created_by', 'createdBy')
                ->set(true)
                ->setValue($userID),
            Field::inst('U.username', 'createdBy'),
            Field::inst('C.dlc_created', 'dlc_created'),
        )
        ->leftJoin('users_enc U', 'U.id', '=', 'C.dlc_created_by')
        ->where(function ($q) use ($ID) {
            if (isset($ID)) {
                $q->where('C.dlc_defect_log_id', $ID, '=');
            }
        })
        ->debug(true)
        ->process($_POST)
        ->json();
    

    Edited by Allan - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    Can you show me the JSON response from the server when the edit request is made and also the parameters that are being sent to the server? You'll find both in the network inspector of your browser.

    Or even better, give me a link to the page so I can take a look at those details directly?

    Thanks,
    Allan

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1

    THis is the response and regarding the link let me see if i can provide you one

    {"fieldErrors":[],"error":"An SQL error occurred: SQLSTATE[22007]: Invalid datetime format: 1366 Incorrect integer value: '' for column zyrhfzajfw.defect_log_comments.dlc_defect_log_id at row 1","data":[],"ipOpts":[],"cancelled":[],"debug":["Editor PHP libraries - version 2.2.2",{"query":"INSERT INTO defect_log_comments ( dlc_defect_log_id, dlc_comment, dlc_created_by ) VALUES ( :dlc_defect_log_id, :dlc_comment, :dlc_created_by )","bindings":[{"name":":dlc_defect_log_id","value":"","type":null},{"name":":dlc_comment","value":"df","type":null},{"name":":dlc_created_by","value":"542","type":null}]}]}

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1
    edited February 5

    https://staginga.assettrack.cx/issues/

    this is the link to the site and i believe you already have the access to this.

  • colincolin Posts: 15,236Questions: 1Answers: 2,597

    I see you're using Editor in your example, but our accounts aren't showing that you have a license. Is the license registered to another email address? Please can let us know so we can update our records.

    Colin

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1
    edited February 4

    robert@burns.net

    this is the email it should be registered to

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    Thank you - we were just a bit confused since your own account doesn't have a license. If the license needs to be reassigned to a different account, just let me know.

    Allan

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1

    My boss already has the license for datatable editor. It must be registerd with email "robert@burns.net".
    I just wanted to know is there any solution to the question I posted.
    Thank you

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    Apologies, I forgot about that point! I do have access to that page - it isn't clear to me how to recreate the error though. I've just tried a "New Action" with the date field filled in and it worked okay.

    Could you give me steps to reproduce the error please?

    Allan

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1

    Try selecting two rows at a time and add a comment for them.

    SO my requirement is I want to add a same comment two multiple rows, same goes with action also, both should follow the same logic.

    Thank you

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    Thanks for the clarification. The action you describe is not one that is built into Editor. You are are using:

            commentEditor.on('initCreate', function (e, node, data) {
                var selectedRowData = table.row({
                    selected: true
                }).data();
                if (selectedRowData) {
                    commentEditor.field('logID').val(selectedRowData.id1);
                }
            });
    

    which, assuming your server-side script accepts that extra data and handles it correctly is okay, but you are using row().data() rather than rows().data(). The latter will select multiple rows and return an array, which you'll need to handle - perhaps with a join to make a comma delimited list of ids for your server-side script (which again would need to handle that).

    Allan

  • Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1

    OK thanks will try that and let you know

Sign In or Register to comment.