Hello all, Being new to WWB (and this forum), I may have a silly question but I need a hint from you guys. I have a Flexgrid where I insert text. I am trying to attach HTML code (php really) to the text so that it is customized based on the user logged in. I tried inserting the code to the text object (both before and after tag) but it doesn't seem to run (yes, the page type is PHP). If I simply drag the text object out of the Flexgrid, it runs perfectly.
My question is, can I not have run HTML/PHP code inside the Flexgrid? If so, how do I do it?
Many thanks.
HTML in Flexgrid
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: HTML in Flexgrid
Did you set the font size in your code? Otherwise it will be zero.
Re: HTML in Flexgrid
did you try inserting an HTML object (from tools) then put the code in the HTML object?
onlye
Gluckstadt, MS USA
Gluckstadt, MS USA
Re: HTML in Flexgrid
Thx for a quick answer, Pablo. It should be set and besides since the same code works outside the grid, it is probably ok. This is the bit of code generated in the Flexgrid section (not the final custom text I want but I'm just testing for now):
<div id="wb_Text14">
<span style="color:#000000;font-family:Arial;font-size:13px;">Custom text ...<br></span>
</div><span id="LoginCheck2">Welcome
<?php
if (isset($_SESSION['username']))
{
echo $_SESSION['username'];
echo '<br><br>';
echo 'Logout';
}
else
{
echo '<br><br>';
echo 'Login or Register';
}
?></span>
</div>
<div id="wb_Text14">
<span style="color:#000000;font-family:Arial;font-size:13px;">Custom text ...<br></span>
</div><span id="LoginCheck2">Welcome
<?php
if (isset($_SESSION['username']))
{
echo $_SESSION['username'];
echo '<br><br>';
echo 'Logout';
}
else
{
echo '<br><br>';
echo 'Login or Register';
}
?></span>
</div>
Re: HTML in Flexgrid
Onlye, I tried that as well, it still does not show up.
Re: HTML in Flexgrid
The font size in your code is only applied to the span and not the php code. The font size is set to zero within the flexgrid. You also have an extra </div>. The php code is outside the first </div> tag. Try adding font size and font family to you 2nd span tag around the php code.
Re: HTML in Flexgrid
Thanks crispy and Pablo! That was it, I did not anticipate the default font size to be 0, very unexpected. I knew it had to be simple.