SpreadJS Documentation > Developer's Guide > Managing the User Interface > Displaying Tooltips |
You can display tooltips when resizing or scrolling in the control or when dragging or moving data.
The following image displays a scroll tip.
The drag drop tip display is different depending on the setting of the referenceStyle method. The following image displays the A1 reference style for the drag drop tip.
This example displays tooltips.
JavaScript |
Copy Code
|
---|---|
spread.showDragDropTip(true); spread.showDragFillTip(true); spread.showScrollTip(GcSpread.Sheets.ShowScrollTip.Both); spread.showResizeTip(GcSpread.Sheets.ShowResizeTip.Both); |