-
AuthorPosts
-
dpchap015 Friend
dpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
August 30, 2014 at 12:00 pm #200927Hi support
i am trying to implement tooltip on JA Sugite template . but its not working .
Here is site url of BS3
http://getbootstrap.com/javascript/#tooltipsJA sugite is also on BS3 .
how can i use this tooltip ?Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 1, 2014 at 9:21 am #547837I’m not sure what did you do on JA Sugite Template? I just tested the code you mentioned above and it’s working fine, see the screenshot
dpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
September 3, 2014 at 6:18 am #548092Hello Ninja Lead
tool top not working you can see it in your screenshot , the text is coming like alt txt . not as given in tool tip .
>>> http://prntscr.com/4j749aNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 3, 2014 at 9:20 am #548121You can check from t3 framework and see tooltip.js included in plugins/t3/admin/bootstrap/js/bootstrap.js and plugins/t3/base/bootstrap/js/bootstrap.min.js files, about the view tooltip in JA Templates difference with default Bootstrap because some css styles define in JA Templates override with default
You can see it in my screenshot
If you wish to run the tooltip like as Bootstrap default, you have to more customize to change it from our JA Templates :((
dpchap015 Frienddpchap015
- Join date:
- September 2011
- Posts:
- 300
- Downloads:
- 75
- Uploads:
- 57
- Thanks:
- 1
- Thanked:
- 24 times in 1 posts
September 16, 2014 at 11:12 am #549704Hi,
There is come major build issue with sugite.
As per your JA Site, Sugite Documentation and T3 Site, the template JS_Sugite is built over T3 framework which has Bootstart 3 Built into core to facilitate all the HTML5, CSS & JS features for the template (JS_Sugite) and anything built over T3 Framework.
But as of now, there is some major bug in the template JS_Sugite that prevents user to extent the template’s Stock functionality by inheriting the Bootstrap features.
Eg: Bootstrap Tooltip & Popover are non-functional on JA_Sugite.My point, the template should not suppress the framework’s core functionality.
HelpNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
September 17, 2014 at 10:14 am #549859:(( The problem doesn’t come from our template. If you want to work with Boostrap Tooltip in our template you can work with my solution below
+ Open templates/ja_templates/tpls/blocks/head.php file
Find and change
<?php
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/css/custom.css');
}
?>To
<?php
// CUSTOM CSS
if (is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL . '/css/custom.css');
}
JHtml::_('bootstrap.tooltip');
?>+ Create custom html module and add new script below
<p>
<button class="btn hasTooltip" title="Tooltip on left" type="button" data-toggle="tooltip" data-placement="left">Tooltip on left</button>
<button class="btn hasTooltip" title="Tooltip on top" type="button" data-toggle="tooltip" data-placement="top">Tooltip on top</button>
<button class="btn hasTooltip" title="Tooltip on bottom" type="button" data-toggle="tooltip" data-placement="bottom">Tooltip on bottom</button>
<button class="btn hasTooltip" title="Tooltip on right" type="button" data-toggle="tooltip" data-placement="right">Tooltip on right</button>
</p>
+ You can see it works with JA Sugite template:
AuthorPostsViewing 6 posts - 1 through 6 (of 6 total)This topic contains 6 replies, has 2 voices, and was last updated by Ninja Lead 10 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum