Posted 11/28/2006 11:28:46 AM | | | | I have added our company's web site to the Console. Is there a way to make this the entire height of the Console area? Right now it is the entire Console width.
KathyC |
| Posted 12/1/2006 2:28:56 PM | | | kathyc20 (11/28/2006) I have added our company's web site to the Console.
Is there a way to make this the entire height of the Console area?
Right now it is the entire Console width.
Kathy,
For custom content items, there is no way thru the UI to change the cell height. However, you can do this by changing a database entry.
Here is an example
The 'defaultParameters' field in the 'db_ContentItems' table in the c360_Solutions database stores the different parameters of the custom content item including the cell height. You can change the 'Cell Height' value in of the 'defaultParamaters' field to specify the height you want.
I am showing an example below of how I changed the height of the sample custom content item cell we install with the product. Here I changed the CellHeight from 250 to 400. After this when you create a console and add this cell, the height will be 400.
update db_ContentItems
set defaultparameters = ''
where contentitemid = '865AA598-13DA-4F2E-9606-A8B4033F40FE'
Important: Please be careful when accessing the SQL tables directly.
thanks
Arvind Raman Director of Product Management c360 Solutions Inc |
| Posted 12/1/2006 2:32:34 PM | | | Arvind Raman (12/1/2006)
kathyc20 (11/28/2006) I have added our company's web site to the Console.
Is there a way to make this the entire height of the Console area?
Right now it is the entire Console width.
Kathy,
For custom content items, there is no way thru the UI to change the cell height. However, you can do this by changing a database entry.
Here is an example
The 'defaultParameters' field in the 'db_ContentItems' table in the c360_Solutions database stores the different parameters of the custom content item including the cell height. You can change the 'Cell Height' value in of the 'defaultParamaters' field to specify the height you want.
I am showing an example below of how I changed the height of the sample custom content item cell we install with the product. Here I changed the CellHeight from 250 to 400. After this when you create a console and add this cell, the height will be 400.
update db_ContentItems
set defaultparameters = 'ProductConfig ProductURL="/c360/Console/CustomPageTest.aspx" CellHeight="400" Scrolling="no" CanRenderWithoutContext="false"/'
where contentitemid = '865AA598-13DA-4F2E-9606-A8B4033F40FE'
Important: Please be careful when accessing the SQL tables directly.
thanks
Note: My earlier took out the SQL statement due to brackets being present. But basically change the 'CellHeight' parameter in the defaultparameters column.
Arvind Raman Director of Product Management c360 Solutions Inc |
| |
|