New to Kendo UI for jQuery? Start a free 30-day trial
PromptBox Appearance
Updated on Feb 11, 2026
The PromptBox provides predefined appearance options such as different sizes, border radiuses, fill modes and theme colors for its built-in button controls.
Size
The PromptBox allows you to configure the size of its buttons. To achieve this utilize the size option for each button configuration.
The supported values are:
smallmedium(default)largenone
javascript
$("#promptbox").kendoPromptBox({
actionButton: {
size: "large"
}
});
Roundness
The PromptBox enables you to apply different border radius to its buttons through the rounded option.
The supported values are:
smallmedium(default)largefullnone
javascript
$("#promptbox").kendoPromptBox({
actionButton: {
rounded: "full"
}
});
Fill Mode
The PromptBox allows you to set different fill modes for its buttons by using the fillMode option.
The supported values are:
solid(default)flatoutlinelinkclearnone
javascript
$("#promptbox").kendoPromptBox({
actionButton: {
fillMode: "flat"
}
});
Theme Colors
The PromptBox allows you to set different theme colors for its buttons by using the themeColor option.
The supported values include:
base(default)primarysecondarytertiaryinfosuccesswarningerrordarklightinversenone
javascript
$("#promptbox").kendoPromptBox({
actionButton: {
themeColor: "primary"
}
});