technicalbard
Posts: 7
|
| Posted: 04/20/2008, 7:27 PM |
|
I would like to layout a page like this:
FILTER OPTIONS FULLTEXT SEARCH
GRID SHOWING RESULTS
So that the user can choose to either filter the grid on a number of listbox options, or do a full text search of the text fields in the grid.
But CCS4 won't let me put two elements side by side. Any way around this?
|
 |
 |
wkempees
|
| Posted: 04/21/2008, 4:27 AM |
|
Build your page as you normaly would, i.e:
NewPage
Search1
Search2
Grid
either by using the Search+Grid Builder to build Search1 + Gridand then add
Search2
or by adding the components one by one.
Make sure evrything works as intended.
Then, In Design, above the top Search Form, from the toolbar insert a Table.
Minimum of 2 rows 2 colums
Save, (reopen), by using drag and drop, drag Search1 into firstrowfirstcol,
drag Search2 into firstrowsecondcol and the grid in the secondrowleftcol.
Save, reopen in HTML mode, find the row containg the grid and change its
<td>
to <td colspan="2"> and delete the extra <td></td>.
Thats it, I think.
Of course the way to do this normaly is to start of with the table and then
add the components to each cell, but I also do this afterwards.
Walter
|
|
|
 |
|