hi, i've jixedbar code like below:
<div id="main-bar">
<ul>
<li title="Home"><a href="
http://localhost/">
<img src="/Content/images/icons/home.png" alt="" /
></a></li>
</ul>
<span class="jx-separator-left"></span>
<ul>
<li title="View"><a href="#">
<img src="/Content/images/icons/network.png"
alt="View" /></a>
<ul>
<li title="View Chart"><a href="#"
id="bChartColumn">
<img src="/Content/images/icons/
chart_column.png" alt="" /> Chart Column</a></li>
<li title="View Chart Line"><a href="#"
id="bChartLine">
<img src="/Content/images/icons/
chart_line.png" alt="" /> Chart Line</a></li>
</ul>
</li>
</ul>
<span class="jx-separator-left"></
span>
<div class="text-container" id="idx-timeserver"
title="Time Server">
</div>
<span class="jx-separator-right"></span>
</div>
</div>
it suppose to response on some click event when user click
bChartColumn base on code below:
jQuery('#bChartColumn').click(function () {
jQuery("#chartColumnDlg").dialog('open');
return false;
});
but nothing happen when user click the button. could you tell me
what's wrong or should i edit the src jixedbar to make it work?
the others, as you can see on my jixedbar code above, there is one
text, idx-timeserver with title Time Server.
could you tell me how can i have jixedbar to show tooltip Time Server
just like standar button tooltip on jixedbar? right now if user hover
idx-timeserver it just showing native browser tooltip, not jixedbar
tooltip.
thanks for your great work.
regards,
heri