I need a sollution. I have a datable. My Table is working fine. But i have to display column data as

I need a sollution. I have a datable. My Table is working fine. But i have to display column data as

shyriadshyriad Posts: 20Questions: 3Answers: 0
    <script type="text/javascript">
        $(document).ready(function () {
            $("#session-table").appTable({
                source: '<?php echo_uri("clients/session_details") ?>',
                columns: [
                    {title: '<?php echo app_lang("last-link-up-time") ?>'},                
                    {title: '<?php echo app_lang("rx-byte") ?>'},              
                    {title: '<?php echo app_lang("tx-byte") ?>'}               

                ]          
            });
        });
    </script>

Answers

  • allanallan Posts: 61,722Questions: 1Answers: 10,108 Site admin

    I need a sollution. I have a datable. My Table is working fine. But i have to display column data as

    As what? I'm not sure what your question is?

    Allan

  • shyriadshyriad Posts: 20Questions: 3Answers: 0

    My Datable contains data which showing well. But i want to show that my each columns data showing as a widget without datatable.

  • allanallan Posts: 61,722Questions: 1Answers: 10,108 Site admin

    I'm a bit confused. You want to show your data without using DataTables? I'm not clear on why you are asking in the DataTables support forum then?

    Allan

Sign In or Register to comment.