Welcome Guest, Not a member yet? Register   Sign In
Remove header values using HTML Table Class
#4

[eluser]sophistry[/eluser]
So, you want to be able to change what is in the th cell? set_heading() method will allow you to do that. send it your nbsp.

um... this is copied directly from the generate() method:
Code:
// Is there a table heading to display?
        if (count($this->heading) > 0)
        {
            $out .= $this->template['heading_row_start'];
            $out .= $this->newline;        

            foreach($this->heading as $heading)
            {
                $out .= $this->template['heading_cell_start'];
                $out .= $heading;
                $out .= $this->template['heading_cell_end'];
            }

            $out .= $this->template['heading_row_end'];
            $out .= $this->newline;                
        }
It says "if heading has been set then use the heading_cell_ template values to construct a heading row."

If this is not what you are asking, then your question needs to be restated with code.


Messages In This Thread
Remove header values using HTML Table Class - by El Forum - 08-07-2007, 06:07 AM
Remove header values using HTML Table Class - by El Forum - 08-07-2007, 08:44 AM
Remove header values using HTML Table Class - by El Forum - 08-07-2007, 09:10 AM
Remove header values using HTML Table Class - by El Forum - 08-07-2007, 09:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB