Hi, upgraded to v3.0.3
Per this example from the xataface website
http://xataface.com/wiki/How_to_Add_Custom_Sections_to_View_Tab
function section__hello(&$record){
return array(
'content' => 'Hello World!!!',
'class' => 'main'
);
}
THIS WORKS, but if you change it to
function section__hello(&$record){
return array(
'content' => 'Hello World!!!',
'class' => 'left'
);
}
changing 'main' to 'left' does not show anything at all... it should show up on the 'left' column.
Anyway to fix it?