Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
zua
Frequent Visitor

Custom Connector: Display icons in navigator

Hello, 

 

I followed the documentation for navigation tables on Handling navigation for Power Query connectors - Power Query | Microsoft Learn

But now I have problems to change the icons in the navigator.

 

I change the values of ItemKind and ItemName to display folder, database and function icons.

I know that the data column has got table values, but this is just for testing purpose.

 

objects = #table(
            {"Name",       "Key",        "Data",                           "ItemKind", "ItemName", "IsLeaf"},{
            {"Item1",      "item1",      #table({"Column1"}, {{"Item1"}}), "Folder",    "Folder",    true},
            {"Item2",      "item2",      #table({"Column1"}, {{"Item2"}}), "Database",    "Database",    true},
            {"Item3",      "item3",      FunctionCallThatReturnsATable(),  "Folder",    "Folder",    true},            
            {"MyFunction", "myfunction", FunctionCallThatReturnsATable(),       "Function", "Function", true}
            }),
        NavTable = Table.ToNavigationTable(objects, {"Key"}, "Name", "Data", "ItemKind", "ItemName", "IsLeaf")
    in
        NavTable;

 

But that does not change the icons displayed in the navigator:.

zua_0-1720783776380.png

 

Can the icons of entries of nav table be changed somehow?

And what is the purpose of the ItemKind and ItemName column in a nav table?

 

Thx

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @zua ,

This is what the ItemKind and ItemName column defines:

vjunyantmsft_0-1721007938725.png

But the exact type of icon that will be displayed depends on what you are returning.
For example, here you want to define a function, but here you use FunctionCallThatReturnsATable(), which as the name suggests will return a table, so it doesn't define it as a function but as a table:

vjunyantmsft_1-1721008184996.png


Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @zua ,

This is what the ItemKind and ItemName column defines:

vjunyantmsft_0-1721007938725.png

But the exact type of icon that will be displayed depends on what you are returning.
For example, here you want to define a function, but here you use FunctionCallThatReturnsATable(), which as the name suggests will return a table, so it doesn't define it as a function but as a table:

vjunyantmsft_1-1721008184996.png


Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors