cancel
Showing results for 
Search instead for 
Did you mean: 

is grid/matrix with multiline rows possible ?

Former Member
0 Kudos

hi,

is it possible to create a grid with multiline rows?

I want to display a long textfield with a larger row height.

for example:

select '1 row' + char(10) + char(13) + ' 2. row'

best regards

Markus

Accepted Solutions (1)

Accepted Solutions (1)

YatseaLi
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Markus,

Yes, it is possible to set the height for the Cell. Every user control inherits from Item. So you call set the height property in Item for the cell.

I don't know how many rows and columns in your matrix. If the total number (Rows * Collumns) of set height is more than hundred, use Form.Freeze()

To Avoid flash

oForm.Freeze(false)

'Set the height

oForm.Freeze(true)

To Avoid performance problem:

in this case, I will suggest to set the height in xml and load the matrix from xml.

Kind Regards

-Yatsea

Former Member
0 Kudos

hi Yatsea,

could you please post a sample code?

I tried to set the height on the cells but there is no attribute.

I also write an attribute height in my xml but it will be ignored.

Does this also work for grids or only for matrix?

Markus

YatseaLi
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Markus,

Sorry, it is not possible to set the height for the row of matrix or grid in the current SDK.

Kind Regards

-Yatsea

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi...

This not possible.

Regards...

Billa 2007