dvanbale
-
2/17/2011 1:56:22 PM
RE:3 col text layout
Ivana is correct that this functionality is not available out of the box.
However, since you're using form fields to customize your page, you can use the following C# line to retrieve the value from your page:
testLabel.Text = CMSContext.CurrentDocument.GetValue("TestField").ToString();
In this example I retrieve the form field named "TestField" and place it inside the Label named "testLabel".
The only challenge that remains for you is how to split up the retrieved value between the 3 columns.
But as Ivana mentioned, if it's possible, please use 3 different html regions.
|