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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
az2451
Resolver I
Resolver I

Support of (d3) Key Events?

Im trying to add a keyEvent because i want to submit only when i press enter

 

But it doesnt seem to exist here for powerbi.

 

Are there any alternatives or is it just disabled for security reasons?

 

 d3.select(this.helpLinkElement9[3]).on("keypress", function(){

                if(d3.event.keyCode === 32 || d3.event.keyCode === 13){
                    console.log("Congrats, you pressed enter or space!")
                    }

                ...

 

 

1 ACCEPTED SOLUTION
az2451
Resolver I
Resolver I

I figured it out by just playing with the code 🙂

 

This works for me, if someone faces the same issue:

 

d3.select(this.helpLinkElement9[3]).on("keypress", function(){

    if((event as KeyboardEvent).keyCode === 13){
                   
        /* Code */

    }

        
});

View solution in original post

3 REPLIES 3
az2451
Resolver I
Resolver I

I figured it out by just playing with the code 🙂

 

This works for me, if someone faces the same issue:

 

d3.select(this.helpLinkElement9[3]).on("keypress", function(){

    if((event as KeyboardEvent).keyCode === 13){
                   
        /* Code */

    }

        
});
v-viig
Community Champion
Community Champion

What exactly issue are you facing? Are there any build issues?

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

It says "keyCode" is not available for type "Event"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.