progressDefault
Optional. Defines whether the progress bar must be shown in a cell in the absence of the component/HTML content in the cell
A progress bar is a visual component which informs users that the content is loading or updating
progressDefault?: boolean;
Default value: false
Example
const layout = new dhx.Layout("layout_container", {
type: "line",
rows: [
{
id: "one",
header: "Header",
height: "250px",
resizable: true,
progressDefault: true
},
{
id: "two",
height: "250px",
progressDefault: true
},
]
});
Change log:
added in v8.0
Related article: Progress bar