This topic is locked

mouse over ToolTip for list page

11/20/2019 1:25:24 PM
PHPRunner General questions
S
Steve Seymour author

I have tried without success to add a tooltip to a field on the list page using a field value from another table

and have reverted to using a custom value - ie. doing an sql query and modifying the list filed by adding a field value from

another table. This works, but is not an ideal solution.
I would like to be able to add a mouseover event to show a tooltip on the list page.
e.g. a customers list page... when the mouse is over the account_id field, I would like to show a boat name which is from another

table - linked on account_id
is this possible ?

Admin 11/21/2019

This can be done and you will have to write some code to make it happen. There is a number of plugins that provide tooltip functionality, you can pick some at https://www.appcues.com/blog/73-tooltip-plugins-made-with-jquery-css-javascript-or-more
To add a tooltip to one one of fields in PHPRunner you will need to set 'View as' type of this field to Custom and add your code there:

https://xlinesoft.com/phprunner/docs/view_as_settings_custom.htm

S
Steve Seymour author 11/21/2019



This can be done and you will have to write some code to make it happen. There is a number of plugins that provide tooltip functionality, you can pick some at https://www.appcues.com/blog/73-tooltip-plugins-made-with-jquery-css-javascript-or-more
To add a tooltip to one one of fields in PHPRunner you will need to set 'View as' type of this field to Custom and add your code there:

https://xlinesoft.com/phprunner/docs/view_as_settings_custom.htm


Thank you Sergey, I'll have another try.

I do use custom view with an sql query, but failed repeatedly to make it work in the mouseover event... ie a tooltip
If I managed to get it working, I'll post the code so other can use it.