3rd September, 10:05
Hi there,
Just want to let you all know that I ported your excellent tooltip library to smalltalk.
Release notes:
JQUIPluginQTipApp BV 2009Sept03.
Wrapper for the JQuery tooltip plugin qTip
-- http://craigsworks.com/projects/qtip/ --
Support for all options described in http://craigsworks.com/projects/qtip/docs/reference/
Only implemented shortcut methods from the API:
$(mytooltip).qtip("show"); // Shows the tooltip
$(mytooltip).qtip("hide"); // Hides the tooltip
$(mytooltip).qtip("focus"); // Focuses the tooltip
$(mytooltip).qtip("disable"); // Disables the tooltip
$(mytooltip).qtip("enable"); // Enables the tooltip
$(mytooltip).qtip("destroy"); // Destroys the tooltip
Use in Seaside is very easy:
I published it on http://vastgoodies.com which is a open source software repository for Visual Age Smalltalk.
I don't know if any of you have experience in smalltalk and seaside, but if you have any questions, on how to use this plugin, just let me know.
Regards,
Bart Veenstra
Just want to let you all know that I ported your excellent tooltip library to smalltalk.
Release notes:
JQUIPluginQTipApp BV 2009Sept03.
Wrapper for the JQuery tooltip plugin qTip
-- http://craigsworks.com/projects/qtip/ --
Support for all options described in http://craigsworks.com/projects/qtip/docs/reference/
Only implemented shortcut methods from the API:
$(mytooltip).qtip("show"); // Shows the tooltip
$(mytooltip).qtip("hide"); // Hides the tooltip
$(mytooltip).qtip("focus"); // Focuses the tooltip
$(mytooltip).qtip("disable"); // Disables the tooltip
$(mytooltip).qtip("enable"); // Enables the tooltip
$(mytooltip).qtip("destroy"); // Destroys the tooltip
Use in Seaside is very easy:
JS Code
|id|
id := html nextId.
html anchor
id: id
; tabIndex: self noTabIndex
; with: 'Show me the tooltip!!'
; script: (html jQuery this script: [ <img src="http://craigsworks.com/projects/forums/images/smilies/confused.gif" style="vertical-align: middle;" border="0" alt="Confused" title="Confused" /> |
s << (s jQuery id: id) qtip
text: 'This is a tooltip which is shown when clicking on the anchor and hidden when the focus is lost. It''s even yellow!!'
; styleName: 'cream'
; styleBorderWidth: 5
; styleBorderRadius: 7
; styleTipCorner: 'topLeft'
; styleWidth: 300
; show: 'click'
; hide: 'unfocus'
])
I published it on http://vastgoodies.com which is a open source software repository for Visual Age Smalltalk.
I don't know if any of you have experience in smalltalk and seaside, but if you have any questions, on how to use this plugin, just let me know.
Regards,
Bart Veenstra
Thanks for porting it.