Welcome Guest, Not a member yet? Register   Sign In
Right justify numeric fields in table display
#4

[eluser]Derek Allard[/eluser]
Yeah, the problem with the table class is that it is really only good for uniform results (ie: database results) and lacks the flexibility that you'd need for these types of issues. I've been wanting to re-write that lib for a bit now Wink That said, would something like this work for you?
Code:
$this->load->library('table');

// set up table template here
// get some data here

foreach ($result->result() as $data) {
     $this->table->add_row(array($data->field1, $data->field2, '<div class="numberfield">' . $data->field3 . '</div>'));
}

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


Messages In This Thread
Right justify numeric fields in table display - by El Forum - 08-08-2007, 10:20 AM
Right justify numeric fields in table display - by El Forum - 08-08-2007, 10:59 AM
Right justify numeric fields in table display - by El Forum - 08-08-2007, 06:00 PM
Right justify numeric fields in table display - by El Forum - 08-08-2007, 06:14 PM
Right justify numeric fields in table display - by El Forum - 08-08-2007, 06:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB