While building an example application, I noticed a few issues:
- .slider() can't be used on an input, instead I have to manually create a div, insert that, handle the resulting layout issues...
- there is no demo that shows how to use draggable and droppable to add items to a container; there is the simple photo manager demo, but thats way too complex
-> my attempt at inserting the ui.helper at the droppable had two results: either nothing happened (helper was killed), or I cloned it first, but then ended up with position:absolute and the position styles
- the theme font-sizes are irritating: as soon as I apply a tabs widget, the font-size of the tabs content changes, I dunno why and I don't know how to set it up so that I can toggle tabs without affecting contents font-sizes
While building an example application, I noticed a few issues:
- .slider() can't be used on an input, instead I have to manually create a div, insert that, handle the resulting layout issues...
- there is no demo that shows how to use draggable and droppable to add items to a container; there is the simple photo manager demo, but thats way too complex
-> my attempt at inserting the ui.helper at the droppable had two results: either nothing happened (helper was killed), or I cloned it first, but then ended up with position:absolute and the position styles
While building an example application, I noticed a few issues:
- .slider() can't be used on an input, instead I have to manually create a div, insert that, handle the resulting layout issues...
- there is no demo that shows how to use draggable and droppable to add items to a container; there is the simple photo manager demo, but thats way too complex
-> my attempt at inserting the ui.helper at the droppable had two results: either nothing happened (helper was killed), or I cloned it first, but then ended up with position:absolute and the position styles
- the theme font-sizes are irritating: as soon as I apply a tabs widget, the font-size of the tabs content changes, I dunno why and I don't know how to set it up so that I can toggle tabs without affecting contents font-sizes
- themeroller bookmarklet works well, but takes a long time to load and doesn't seem to cache anything, when loading it again, the load time is just as bad
You could with older versions of UI at least, I haven't tried the
current code in a while.
Wichert.
More:
- when using .trigger("slide") to trigger a slide event, eg. directly after intializing the slider, so that the code in the slide-option gets executed, nothing happens; I'd have to implement the same code again, which is even more annoying as I can't reuse the same function: the slide event handler has to use ui.value in order to get at the actual value, as .slider("value") returns the current value
- when clicking on a an #-anchor before tabs are initialized, the location is updated to include that anchor; when then tabs are initialized, they use that location to display the tab; so far, so good, but when now clicking on other tabs, the location isn't updated, so on each reload, that same tab is activated