添加图像到 Joomla JToolBar 自定义链接按钮
您好,我在组件的管理部分创建了一个自定义按钮链接,如下所示:
$bar = & JToolBar::getInstance('toolbar');
$bar->appendButton( 'Link', 'export', 'Export', 'index.php?option=com_component&task=export&format=raw' );
但是没有为其分配图像,我不知道如何为按钮分配图像。有谁知道我该怎么做?
Hi I have created a custom button link in the admin section of my component, something like this:
$bar = & JToolBar::getInstance('toolbar');
$bar->appendButton( 'Link', 'export', 'Export', 'index.php?option=com_component&task=export&format=raw' );
However no image is assigned to it and I don't know how to assign one to the button. Does anyone know how I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建带有图像背景的名为
icon-32-export
的 CSS 类。这是一个例子:
You need to create CSS class called
icon-32-export
with image background.Here is an example: