Section |
---|
Column |
---|
The way in which the range annotation tooltip is configured has changed. A new subcomponent (a wrapper around jQuery's tooltip) is used for this, and the configuration options are specified within a new tooltip option. If you used... | You'll now use... |
---|
Code Block |
---|
|
var opts = {
tooltipDelay: 150,
tooltipId: "myTooltip",
styles: {
tooltip: ".annotTooltip"
}
};
|
| Code Block |
---|
|
var opts = {
tooltip: {
delay: 150
styles: {
tooltip: ".annotTooltip"
}
// no id is required
}
}; |
|
|
Column |
---|
Panel |
---|
borderColor | #566b30 |
---|
bgColor | #fff |
---|
titleBGColor | #D3E3C4 |
---|
title | On this Page |
---|
borderStyle | solid |
---|
| |
|
|
The default message string used for the summary has changed, so if you relied on this default, you'll have to set it directly.
...
Several utility functions have been moved into the public namespace. For information, see the comments in the code.
The Pager now depends on more framework files than before, as well as additional jQuery UI files.
Old Dependencies |
---|
Code Block |
---|
|
<script type="text/javascript" src="lib/jquery/core/js/jquery.js"></script>
<script type="text/javascript" src="framework/core/js/Fluid.js"></script>
<script type="text/javascript" src="framework/core/js/DataBinding.js"></script>
<script type="text/javascript" src="lib/fastXmlPull/js/fastXmlPull.js"></script>
<script type="text/javascript" src="framework/renderer/js/fluidParser.js"></script>
<script type="text/javascript" src="framework/renderer/js/fluidRenderer.js"></script>
<script type="text/javascript" src="components/pager/js/Pager.js"></script>
|
|
New Depenencies |
---|
Code Block |
---|
|
<script type="text/javascript" src="lib/jquery/core/js/jquery.js"></script>
<script type="text/javascript" src="lib/jquery/ui/js/jquery.ui.core.js"></script>
<script type="text/javascript" src="lib/jquery/ui/js/jquery.ui.widget.js"></script>
<script type="text/javascript" src="lib/jquery/ui/js/jquery.ui.position.js"></script>
<script type="text/javascript" src="lib/jquery/plugins/bgiframe/js/jquery.bgiframe.js"></script>
<script type="text/javascript" src="lib/jquery/plugins/tooltip/js/jquery.ui.tooltip.js"></script>
<script type="text/javascript" src="lib/json/js/json2.js"></script>
<script type="text/javascript" src="framework/core/js/Fluid.js"></script>
<script type="text/javascript" src="framework/core/js/FluidDOMUtilities.js"></script>
<script type="text/javascript" src="framework/core/js/FluidDocument.js"></script>
<script type="text/javascript" src="framework/core/js/jquery.keyboard-a11y.js"></script>
<script type="text/javascript" src="framework/core/js/DataBinding.js"></script>
<script type="text/javascript" src="framework/core/js/FluidRequests.js"></script>
<script type="text/javascript" src="lib/fastXmlPull/js/fastXmlPull.js"></script>
<script type="text/javascript" src="framework/renderer/js/fluidParser.js"></script>
<script type="text/javascript" src="framework/renderer/js/fluidRenderer.js"></script>
<script type="text/javascript" src="components/tooltip/js/Tooltip.js"></script>
<script type="text/javascript" src="components/pager/js/Pager.js"></script>
|
|