Changes between Initial Version and Version 1 of Ticket #4185


Ignore:
Timestamp:
Feb 20, 2009, 7:55:55 AM (14 years ago)
Author:
rdworth
Comment:

The knobHandles feature was removed as part of the transition to the new jQuery UI CSS Framework. The same can be achieved by css. This allows for the styling of the handles to be configurable and themeable, neither of which the 1.5.3 version offered (as the styling was done inline). Here's the css for doing 1.5-styled knobHandles in 1.6rc6/1.7:

.ui-resizable-handle {
width: 8px; height: 8px;
border: 1px solid rgb(128, 128, 128);
background: rgb(242, 242, 242);
}
.ui-resizable-n, .ui-resizable-s { left: 45%; }
.ui-resizable-e, .ui-resizable-w { top: 45%; }
.ui-resizable-se { bottom: -5px; right: -5px; }

See attached for full code samples of knobHandles in 1.5 compared to 1.7.

This will be fully documented in the Upgrade Guide (in progress) as part of the 1.7 final release.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4185

    • Property Status changed from new to closed
    • Property Milestone changed from TBD to 1.6
    • Property Resolution changed from to invalid
    • Property Summary changed from KnobHandles functionality is missing in jQuery UI 1.6 to KnobHandles functionality is missing in jQuery UI 1.6rc6
  • Ticket #4185 – Description

    initial v1  
    1 
    2 I was relying on the KnobHandles feature of the 'resizable' component in UI version 1.5.x. I upgraded to version 1.6 (and jQuery 1.3.1) because there were problems with the 'destroy' feature of 1.5.
     1I was relying on the KnobHandles feature of the 'resizable' component in UI version 1.5.x. I upgraded to version 1.6rc6 (and jQuery 1.3.1) because there were problems with the 'destroy' feature of 1.5.
    32
    43...but the 'KnobHandles' feature seems to have been removed? The API documentation did not state that it was 'deprecated' and I cant find any other documentation about this, so I assume it is a bug.