patm
Posts: 3
|
| Posted: 03/16/2011, 7:01 AM |
|
I tried searching the form and could not find a response. What I am asking is it possible on an editable grid can you have the insert form that follows the grid appear to the right or left side of the grid vice at the bottom.
example:
currently desplayed:
grid form -----------------
Insert form ----------------
submit button
Request to display like this:
grid form -------- Insert form -------- submit button
Thank you for any help.
|
 |
 |
vandalen
Posts: 58
|
| Posted: 03/16/2011, 7:44 AM |
|
Hi Patm ...
Hopefully I understand what you are asking but why not add a table with 2 columns and put a panel per column?
That will put things side by side.
|
 |
 |
damian
Posts: 838
|
| Posted: 03/16/2011, 4:02 PM |
|
yes tables or divs
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
djgjohn
Posts: 52
|
| Posted: 03/17/2011, 12:58 AM |
|
The table:
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top" style="padding-right: 12px">
[grid or record form here]
</td>
<td valign="top">
[grid or record form here]
</td>
</tr>
</table>
To get the form and grid to display at the top of the container table cell you use 'valign="top"'
To create padding to the right of the left cell you can add the style inline as shown
|
 |
 |