HTML in Flexgrid

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
jdd99
 
 
Posts: 15
Joined: Sat Mar 09, 2024 12:45 am

HTML in Flexgrid

Post by jdd99 »

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.
User avatar
Pablo
 
Posts: 23258
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: HTML in Flexgrid

Post by Pablo »

Did you set the font size in your code? Otherwise it will be zero.
User avatar
onlye
 
 
Posts: 439
Joined: Sun Jun 17, 2018 12:36 am
Location: Gluckstadt, MS USA
Contact:

Re: HTML in Flexgrid

Post by onlye »

did you try inserting an HTML object (from tools) then put the code in the HTML object?
onlye
Gluckstadt, MS USA
jdd99
 
 
Posts: 15
Joined: Sat Mar 09, 2024 12:45 am

Re: HTML in Flexgrid

Post by jdd99 »

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>
jdd99
 
 
Posts: 15
Joined: Sat Mar 09, 2024 12:45 am

Re: HTML in Flexgrid

Post by jdd99 »

Onlye, I tried that as well, it still does not show up.
User avatar
crispy68
 
 
Posts: 3003
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: HTML in Flexgrid

Post by crispy68 »

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.
jdd99
 
 
Posts: 15
Joined: Sat Mar 09, 2024 12:45 am

Re: HTML in Flexgrid

Post by jdd99 »

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.
Post Reply