Giter VIP home page Giter VIP logo

Comments (5)

n1crack avatar n1crack commented on August 14, 2024

Nice one! I like it.. Thanks for sharing this.

from ignited-datatables.

cryogenix avatar cryogenix commented on August 14, 2024

you can submit this as a pull request and we'll gladly add your code suggestion into the trunk ;)

from ignited-datatables.

jellehak avatar jellehak commented on August 14, 2024

Nice, but I still need to figure out some hours how to do this. Anyway I revised the code some to be used inside the controller class functions:

/**
* Generates the result
*
* @param string charset
* @return string
*/

function result($reset = false) {
if($this->result && $reset == false) return $this->result;

    $rResult = $this->get_display_result();
    return $this->result = $rResult->result();
}

/**
* Builds a JSON encoded string data
*
* @param string charset
* @return string
*/
function produce_output($charset)
{
  $aaData = array();

    $iTotal = $this->get_total_results();
  $iFilteredTotal = $this->get_total_results(TRUE);

  foreach($this->result() as $row_key => $row_val) { 

//........

Use it like this

    $this->load->library('datatables');

    $this->datatables->from("test");

    $result = $this->datatables->result();
    print_r($result);
    foreach($result as $row) {

    }

    echo $this->datatables->generate();

from ignited-datatables.

blagi avatar blagi commented on August 14, 2024

Using this idea I did made some quick and dirty changes in Datatables.php. I'd like to upload my update but, as a beginner here, I'm not sure what is a best way to publish my version.

I had a problem knowning in CI controller a viewer columns, so I defined Datatables columns by using sClass aColumns attribute, and sending it as a post variables to ajax php controller. That solves a problem when mDataProp is a function.
I did divide datatables->generate() in two step.

The first is finished with db->get() returnin a db query result object. Intention was to make possible to add new columns to that object and work with them inside jQuery datatables object using mDataProp.

The second step is using that same, eventually changed, query object, to produce Json output.

from ignited-datatables.

alfinadisurya24 avatar alfinadisurya24 commented on August 14, 2024

excuse me , how to set value data-id=$1 if me have more than 10 field

from ignited-datatables.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.