Hi everyone, i’m creating a new grid after one or two years since the last ones, im facing a stupid problem if i add the code down, the grid comes without data, if i delete that it will load with data but completely desconfigurated, how can i fix this?
$grid[“caption”] = “Sample Grid”;
$g->set_options($grid);
2 Answers
$grid[“caption”] = “Sample Grid”;
$g->set_options($grid);
without
It’s more like a CSS issue. Most likely you are missing HTML doctype tag in html output. Add following before <html>.
e.g.
<!doctype html>
<html>
….
Your Answer