I've been hunting down a reason why updating a widgets css class list
hasn't been working for me for AJAX requests (i.e., expected CSS-
styled changes don't update without a refresh), and I think it's come
down to this:
(loop for w in dirty
if (gethash w render-state)
do (circularity-warn w)
else
do (render-widget w :inlinep t)
(setf (gethash w render-state) t)
and collect (cons (dom-id w)
(get-output-stream-string
*weblocks-output-stream*)))
Is there a specific reason why widget headers aren't re-rendered for
dirty widgets (i.e., :inlinep t)? In my case, I need the header to be
re-rendered to affect the proper styling changes.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en
-~----------~----~----~----~------~----~------~--~---