Displaying 3 results from an estimated 3 matches for "livequery".
2009 Mar 30
0
Trying to bind an appended partial that has REST_in_place attached to it with jquery?
...9;'<div id="flash_notice"><%= escape_javascript
(flash.delete(:notice)) %></div>'');
$("#shows").append("<%= escape_javascript(render(:partial => @show))
%>").effect("highlight", {}, 3000);
$(".rest_in_place").livequery(''click'', function(){rest_in_place()});
$("#new_show")[0].reset();
The portion below so far does nothing. Just my tests to see what I can
try and bind.
$(".rest_in_place").livequery(''click'', function(){rest_in_place()});
It would be nice if t...
2009 Oct 06
0
[PATCH server] new host networking wui
...; %>',
+ <%= @host.id %>)
+ }
+ }
+ };
+
+ // bind form using 'ajaxForm'
+ $('#host_network_form').ajaxForm(opts);
+ }
+
+ // handle network select box clicked event
+ $(".host_network_table_select_net").
+ livequery('click', on_network_select_box_clicked).
+ bind('click', on_network_select_box_clicked);
+
+ // handle network select box changed event
+ $(".host_network_table_select_net").
+ livequery('change', on_network_select_box_changed).
+ bind('change'...
2016 Dec 22
5
Understanding SlotIndexes
Hi all,
I'm tracking down a register allocation problem and I'm trying to
understand this piece of code in InlineSpiller::spillAroundUses:
// Find the slot index where this instruction reads and writes OldLI.
// This is usually the def slot, except for tied early clobbers.
SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
if (VNInfo *VNI =