In a customer panel card grid pulling in a BAQ, I’m trying to have the order number, Pack num and BOL num linked/hyperlinked. I clicked ‘is link’ in the Grid Model > Column section. It shows the order num as a link in the grid, but I cannot click on it or right click. Any ideas? Does it need EPbinding?
Try using field attributes in the baq for those columns and set the appropriate Like value
If the like values are set… do you get a context menu when you right-click? That’s all the “Like” values will do in this case (I think). Like PartNum gives you a PartNum context menu; Like OrderNum will give you the OrderNum context menu, etc.
“Is Link” just tells the software that the OrderNum is clickable as a link… but you haven’t told the program what to do (where to go) when that link is clicked. For example, you could click that link and open Google.com via a url-open event if you wanted to.
But that’s the key… you have to create an onClick event to define what clicking the pretty blue text will do.
If you just want to click on the OrderNum (link), and open Order Entry… you need to build an On-Click event to trigger that action. App-open event.
Create an new event…
- Trigger = Grid
- Hook = On Click
- Target = (the name of your grid)
- Columns = (the name of the column in the grid)
You’d then drag in an “app-open” (from toolbox).
This is where my insight dries up… I would search the forum for “app-open” parameters and see if you can find details on how to set those up.
Are they base?
Is this a custom grid? If so… You will need to create an event for each column…
Then in the grid… Enable this feature…
You can do valueIn etc etc… When you click the link it will open the record in the App…
Have fun…
Hey @aarong - I think I may be adding my event incorrectly. Any tips? No title is appearing and I cannot find my custom grid anywhere on the events drop downs.
The Event drop downs just show the “names” (ID’s) of the events. Right now, the name of your Grid event is “NewEvent”.
You can change it (when you’re first creating it) by click on the name in the design screen, and then changing the name in the “Id” properties field.
I believe once the event Saves, you cannot rename it. So you may want to delete and recreate it if you want a different Name.
So… if I understand your question… you won’t see your custom grid itself in the dropdown in your picture… you’ll just see events tied to grids in that dropdown.