CodeCharge Studio
search Register Login  

Web Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> General/Other

 Format a grid display any which way

Print topic Send  topic

Author Message
Bill
Posted: 09/28/2005, 11:37 AM

Am not sure how to format a grid display. For example, consider a grid based on three or four tables with say 20 plus fields. The grid builds horizontally and I have to scroll across the browser to see it all. How can I break the grid up into sections and build it vertically? Is there a way to do this without coding, css etc
Thank you
Pete Sass
Posted: 09/28/2005, 12:23 PM

Currently wven with v3.49 beta there is no way to break up the grid automatically with an option in the IDE. However, there is a short a quick work-a-round you can manually add into the HTML page in seconds that will do the trick.
Modify the 'HTML' code as shown below:

<!-- BEGIN Row -->
<tr>
<td>{Task_id}</td>
<td>{TaskName}</td>
<td>{Priority}</td>
<td>{Status}</td>
</tr>
</tr>
<td colspan="4">{Description}</td>
</tr>
<!-- END Row -->

Note: the sructure that breaks and forces the Description field to be displayed on the second line in a grid from one record.

Pete,
Bill
Posted: 09/28/2005, 5:11 PM

I'll give it a go, thanks Pete.
Wonder if YesSoftare will ever give us this functionality, or would it be considered not necessary?
Benjamin Krajmalnik
Posted: 09/30/2005, 4:52 PM

<td>{Status}</td>
</tr>
</tr>
<td colspan="4">{Description}</td>


should be

<td>{Status}</td>
</tr>
<tr>
<td colspan="4">{Description}</td>


<PeteSass@forum.codecharge (Pete Sass)> wrote in message
news:2433aedc85b8be@news.codecharge.com...
> Currently wven with v3.49 beta there is no way to break up the grid
> automatically with an option in the IDE. However, there is a short a
quick
> work-a-round you can manually add into the HTML page in seconds that will
do
> the trick.
> Modify the 'HTML' code as shown below:
>
> <!-- BEGIN Row -->
> <tr>
> <td>{Task_id}</td>
> <td>{TaskName}</td>
> <td>{Priority}</td>
> <td>{Status}</td>
> </tr>
> </tr>
> <td colspan="4">{Description}</td>
> </tr>
> <!-- END Row -->
>
> Note: the sructure that breaks and forces the Description field to be
displayed
> on the second line in a grid from one record.
>
> Pete,
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>

Bill
Posted: 10/01/2005, 3:01 AM

Got it, thanks

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

PHP Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.