Skip to content

Added Switch to show/hide scrollBar #1080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pull from origin
  • Loading branch information
MenamAfzal committed Aug 1, 2024
commit a5f5919445e4ae2816e3eedc3ee905194d0980cb
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ const childrenMap = {
autoHeight: AutoHeightControl,
showVerticalScrollbar: withDefault(BoolControl, false),
showHorizontalScrollbar: withDefault(BoolControl, false),
horizontalGridCells: SliderControl,
scrollbars: withDefault(BoolControl, false), //TOLOOK INTO
showBorder: BoolControl,
pagination: withDefault(PaginationControl, { pageSize: "6" }),
style: styleControl(ListViewStyle, 'style'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const childrenMap = {
}),
autoHeight: AutoHeightControl,
showVerticalScrollbar: withDefault(BoolControl, false),
horizontalGridCells: SliderControl,
scrollbars: withDefault(BoolControl, false),
placement: withDefault(PositionControl, "top"),
onEvent: eventHandlerControl(EVENT_OPTIONS),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ const childrenMap = {
showFooter: BoolControl,
autoHeight: AutoHeightControl,
showVerticalScrollbar: withDefault(BoolControl, false),
horizontalGridCells: SliderControl,
scrollbars: withDefault(BoolControl, false), //TOLOOK INTO
style: withDefault(styleControl(ContainerStyle, 'style'),{borderWidth:'1px'}),
headerStyle: styleControl(ContainerHeaderStyle, 'headerStyle'),
bodyStyle: styleControl(ContainerBodyStyle, 'bodyStyle'),
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.