This topic is locked
[SOLVED]

 Can Dashboard details page be in valign top?

10/8/2014 2:40:06 PM
PHPRunner General questions
F
F5447 author

Hi All,
Regarding dashboard details pages, can it be made in valign="top"?

What should be the easier way?

Any standard settings in PHPRunner can do this?
Thanks in advance.

CK

<TABLE class="rnr-dashboard" cellspacing="0" cellpadding="0">

<TBODY>

<TR>

<TD class="rnr-dbelement" valign="top" rowspan="2" colspan="1">

{$db_32DB11LD_list}

</TD>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

{$db_32DB_details}

</TD>

</TR>

<TR valign="top">

<TD class="rnr-dbelement" valign="top" rowspan="1" colspan="1">

{$db_32DB_details1}

</TD>

</TR>

<TR>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

</TD>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

</TD>

</TR>

</TBODY>

</TABLE>
Sergey Kornilov admin 10/9/2014

Could you elaborate what is the issue you dealing with? Show us some screenshot that explains what you dealing with.

F
F5447 author 10/9/2014

Hi Sergey Kornilov,
As per request, the screenshots can be viewed at the following URL:
https://docs.google.com/document/d/1VULnyFBB0NObFTVRjty64CtWwD_WtgGGaM1WICCOFrg
If Valign=Top is working on the 2 records section, then the space should be more or less same as screenshot 1. Now, it seems that screenshot 2, the section records move up and down when the records is lesser or more.

Sergey Kornilov admin 10/9/2014

I see what you saying. You need to move one of dashboard elements to another table cell. Here is how it's supposed to be.

<TABLE class="rnr-dashboard" cellspacing="0" cellpadding="0">

<TBODY>

<TR>

<TD class="rnr-dbelement" valign="top" rowspan="2" colspan="1">

{$db_32DB11LD_list}

</TD>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

{$db_32DB_details}

{$db_32DB_details1}

</TD>

</TR>

<TR valign="top">

<TD class="rnr-dbelement" valign="top" rowspan="1" colspan="1">



</TD>

</TR>

<TR>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

</TD>

<TD class="rnr-dbelement" rowspan="1" colspan="1">

</TD>

</TR>

</TBODY>

</TABLE>
F
F5447 author 10/10/2014

Thanks for suggestion, but it is working fine.