Option Name |
Purpose |
width |
a rough width your columns, and Columnizer will create as many as will fit in the browser window |
height |
This option can only be used in conjunction with the width option. When both the width and height options are set, columns will continue to be built to those measurements to fill all of the content. This is useful for scrolling columns horizontally. See sample 5 for an example. |
columns |
an alternative to the width option. Sets a static number of columns to build, regardless of widget. |
target |
An optional CSS selector may be used here to determine where the columnized content should be placed. If a target is specified, the columnized node will remain unchanged, and the target node will contain columnized content. |
doneFunc |
This function will be called when columnizing is complete. |
ignoreImageLoading
|
true by default. If set to false, Columnizer will try to wait until images in the content have loaded before columnizing the data. |
columnFloat |
default is “left”. Change to “right” for right to left languages. |
lastNeverTallest
|
false by default. Set to true to ensure that the last column of the columnized content is not the tallest column. |
buildOnce |
if buildOnce is false, the content will be re-columnized when the window is resized. If buildOnce is true, the content will only be columnized once. |
overflow |
If this option is used, then a static height is set to the columnized content, and any content that does not fit within the height is put into the element specified by $(id). See demo 1 for an example. |
height (required): the static height for the columnized content |
id (required): The id of the element to put the remainder of the content |
doneFunc (optional): a function to be called after the content has been columnized. This is a great place to columnize the remainder content. |
manualBreaks |
Defaults to false. Set to true if you only want to create columns with manual column breaks. If true, then width, height, columns options are ignored. |