How to build a split button component for Power Apps

tl;dr
Less controls mean less user confusion and better performance - This blog post guides you through the creation of a simple yet effective split button component.
Let’s create a component
- Create a new canvas component
cmp_SplitButton
and add the following custom properties to itproperty type default splitButtonHeight Number 40
splitButtonWidth Number 196
primaryColor Color ColorValue("#1e6091")
secondaryColor Color ColorValue("#168aad")
textColor Color White
buttonText Text "open"
Onchange Behavior(Text) (needs boolean parameter called option
)Onselect Behavior(Boolean) true
- Add a button
btn_main
to the component - Set its OnSelect property to
cmp_SplitButton.Onselect()
- this will make sure that when we later call that function we will return atrue
so that we can determine in our app if that button was selected. - Now let’s refer to our custom properties:
property value BorderColor Self.Fill
Color cmp_SplitButton.textColor
Fill cmp_SplitButton.primaryColor
Height cmp_SplitButton.splitButtonHeight
HoverBorderColor cmp_SplitButton.secondaryColor
HoverColor Self.Color
HoverFill cmp_SplitButton.secondaryColor
PressedBorderColor cmp_SplitButton.secondaryColor
PressedColor Self.Color
PressedFill cmp_SplitButton.secondaryColor
Radius 0 Width cmp_SplitButton.splitButtonWidth-36
- Add a dropdown control
drp_options
to the component and refer as follows to our custom properties:
property | value |
---|---|
BorderColor | cmp_SplitButton.primaryColor |
ChevronBackground | cmp_SplitButton.primaryColor |
ChevronFill | cmp_SplitButton.textColor |
ChevronHoverBackground | cmp_SplitButton.secondaryColor |
ChevronHoverFill | cmp_SplitButton.textColor |
HoverBorderColor | cmp_SplitButton.secondaryColor |
Color | cmp_SplitButton.secondaryColor |
Fill | White |
Height | cmp_SplitButton.splitButtonHeight+2 |
HoverBorderColor | cmp_SplitButton.secondaryColor |
HoverColor | cmp_SplitButton.textColor |
HoverFill | cmp_SplitButton.secondaryColor |
PressedBorderColor | cmp_SplitButton.secondaryColor |
PressedColor | cmp_SplitButton.textColor |
PressedFill | cmp_SplitButton.secondaryColor |
SelectionColor | cmp_SplitButton.textColor |
SelectionFill | cmp_SplitButton.secondaryColor |
Width | cmp_SplitButton.splitButtonWidth+2 |
I know, that is a tedious task, but trust me, the result looks good.
- Set the Items property to any array that you like - I used
["open in SharePoint", "open in Teams", "send as an email"]
- Now let’s take of functionality of the dropdown - set the OnChange property to
cmp_SplitButton.Onchange(drp_options.SelectedText.Value)
.
Add Functionality to your component
Depending on your use case, you will want to at least
- determine, if the button has been selected (to then perform other actions)
- determine, which value has been selected in the dropdown.
To achieve this,
- Add your component to the app
- Set the Onselect (custom) property to
UpdateContext({loc_isButtonClicked:true})
- which saves aTrue
value in local variable to determine if that button was clicked. - Set the Onchange (custom) property to
UpdateContext({loc_selectedOption: option})
- this way you set a local variable to the Selected Text of your dropdown
Why is this better than a dropdown menu and a separate button?
We aim to deliver clean, consistent, and intuitive user experiences - and in cases where we want users to perform a main action or where its likely that one action is the most important action on a screen, we want to make that obvious to them. However sometimes, there are similar actions that can be performed as well - and then such a split button comes in handy. This design pattern is a great way to reduce visual clutter and provide a good user experience.
Feedback and what’s next?
I am curious - do you use split buttons as well? What are your use cases>? Let me know on twitter :-) If you found this blog post useful, please also subscribe to my newsletter - news coming about every 2 months, I promise to not spam you!
Published on:
Learn moreRelated posts
Microsoft Dataverse – Test Power Apps with the test engine
We are announcing the ability for makers and professional developers to test Power Apps with the test engine in Microsoft Dataverse. This feat...
Sort a collection by a date column in Power Apps
Recently I came across a Power Apps solution that needed to sort a collection by a date column. In this post the pains of sorting by date fiel...
Find Power Automate flows referencing a specific field / column in Power Apps
In this blogpost, we will learn to identify all Power Automate flows that reference or interact with a specific column or field within a Power...
Embedding Canvas Apps into Model-Driven Forms for a Unified Experience
In Microsoft Power Apps, there are two main application types—canvas apps and model-driven apps—each serving unique purposes. While model-driv...
Testing the Waters: Why Power Apps Preview Isn’t Always Ready for Prime Time
Preview features are early releases provided to allow developers and organizations to explore and test new capabilities before they are fully ...
Power Platform admin center – View usage and value metrics for Copilot agents in Power Apps
We previously announced that the ability to view usage and value metrics for Copilot agents in Power Apps in the Copilot hub within the Power ...
How to Remove an Active Unmanaged Layer from the Ribbon in Power Apps (Dynamics 365 CRM) Using ribbondebug=true
Customizing the ribbon (command bar) in Dynamics 365 CRM via Power Apps can be a powerful way to tailor the user interface ...