Skip to content

Commit

Permalink
SelectBox: fix Grouping code snippet (DevExpress#5939)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladaskorohodova committed Jan 18, 2024
1 parent a3b620d commit c347dde
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ If your data is not grouped, you can group it using the [group](/api-reference/3
<template>
<DxSelectBox ...
:data-source="selectBoxDataSource"
:grouped="type"
:grouped="true"
display-expr="name"
value-expr="count"
/>
Expand Down Expand Up @@ -478,7 +478,7 @@ If your data is not grouped, you can group it using the [group](/api-reference/3
return (
<SelectBox ...
dataSource={selectBoxDataSource}
grouped="type"
grouped="true"
displayExpr="name"
valueExpr="count"
/>
Expand Down

0 comments on commit c347dde

Please sign in to comment.