Serverside Column control - right

Serverside Column control - right

KonyaKonya Posts: 5Questions: 3Answers: 0

hi

server side row details I have only used,

https://datatables.net/examples/server_side/row_details.html

described here, everything disappears when I add the codes

server side right control how to do?
https://datatables.net/extensions/responsive/examples/child-rows/right-column.html

Answers

  • kthorngrenkthorngren Posts: 21,167Questions: 26Answers: 4,921

    You are mixing two different solutions. The first example is using Chid Row details. The second is using the Responsive Extension. Based on you other thread I assume you are asking about Child Row details. If you want to move the child control to the right then change the order of the columns, for example:

            "columns": [
    
                { "data": "first_name" },
                { "data": "last_name" },
                { "data": "position" },
                { "data": "office" },
                {
                    "class":          "details-control",
                    "orderable":      false,
                    "data":           null,
                    "defaultContent": ""
                },
    

    Kevin

This discussion has been closed.