Add New Button Not Working on BAQ Grid

Hey everyone, I’ve created an updatable BAQ and added a grid to the Package Code Maintenance module in Kinetic. When published the “New” button is visible but non-functional. When I go into application studio I am unable to see the button or find any reference to it. I am trying to make it so that when I click the button, it allows me to add a row which will be adding values to two columns in the UD field. Has anyone ever experienced this?

Are you sure you are on the right section in app studio?

Yeah, I believe so. I only see the + button on the grid after I’ve published it. But when I go to app studio, I don’t see it anywhere.

Here it is in app studio:


I swear there used to be something on the properties panel that would allow you to control some functionality of these tools.

This is what it looks like published:
image

But the “New” button does not do anything. I even tried adding an event to add a row to the data view but it’s still not doing anything.

I’m in 2023.2 if that changes anything.

Just curious if you ever found a solution to this.

I can’t seem to find that + button anywhere. It shows up by default on any panel card grid I add. Would like to hide it, or at least now where to trigger the event in case I wanted to use it.

The default plus button on grids is handled by the framework. Which is why it cannot be seen on in the tools / action data of the grid.

If you check the developer tools > console tab when clicking the button it will tell you what event name it is expecting.

Alternatively if you go to the data view set up and go to the tools grid and click new > type = New > then set the hidden value to true. That will hide it off. Then you can create your own tool if you need full control.

Thanks Ben, much appreciated!