Displaying 6 results from an estimated 6 matches for "newdiv".
Did you mean:
newdir
2006 Feb 23
25
reloading fragments of pages
...ototype = {
initialize: *function*() {
},
refreshPortletCompleted: *function*(originalRequest) {
*// getting new positions from the server*
result = originalRequest.responseText;
*if* (result!='''') {
$(this.last_portlet_id).innerHTML = result;
*var* newdiv = document.createElement("div");
newdiv.innerHTML = result;
newdiv.id = this.last_portlet_id;
olddiv = $(this.last_portlet_id);
parent = olddiv.parentNode;
olddiv.parentNode.replaceChild(newdiv, olddiv);
}
},
refreshPortlet: *function*(portlet_id) {...
2006 Nov 11
2
Setting Ajax.Updater update target to alternate window?
I need to make a call to Ajax.Updater(container, url, options) where
container needs to be a DOM element in another window.
So assuming my form is in window "X", can I specify a DOM element in
window "Y" as the update target for my AJAX call?
If I can, what is the correct syntax?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2011 Jan 13
3
[LLVMdev] llc linkage problem
I am using LLVM 2.8 on Ubuntu 10.10. (new to both)
I change name of instruction on XXXInstrInfo.td ( Sparc, X86 and XCore). I
looked into XXXGenAsmWriter.inc and I have seen the new instruction name.
But when I run llc for the three targets it prints out the old instruction
name.
For example for XCore I change “divs” to “sdiv” like
>From => def DIVS_l3r :
2011 Jan 13
0
[LLVMdev] llc linkage problem
On 13 January 2011 19:20, Atse Zeriakob <atsezeriakob at gmail.com> wrote:
> For example in XCoreInstrInfo.td I change the name of one of the instruction
> let say "divs" to "newdivs",
>
> like
> def DIVS_l3r : FL3R<"newdivs", sdiv>;
>
> When I run llc with option -march=xcore, after I make the modification, it
> still outputs "divs", not "newdivs". I looked into XCoreGenAsmWriter.inc,
> and made sure that string As...
2011 Jan 13
1
[LLVMdev] need help on llc option -march=?
...td ( Sparc, X86 and XCore). I
looked into XXXGenAsmWriter.inc and I have seen the new instruction name.
But when I run llc for the three targets it prints out the old instruction
name.
For example in XCoreInstrInfo.td I change the name of one of the instruction
let say "divs" to "newdivs",
like
def DIVS_l3r : FL3R<"newdivs", sdiv>;
When I run llc with option -march=xcore, after I make the modification, it
still outputs "divs", not "newdivs". I looked into XCoreGenAsmWriter.inc,
and made sure that string AsmStrs includes "newdivs...
2007 Jun 28
5
Droppable onHover fires on page load, not on hover
Hi all, first post. I have a simple set of drag/drops that I''m trying
to use in FF. Unfortunately on page load all of the droppables on the
page fire simultaneously and then won''t respond to any futher attempts
to drop anything on them. Firebug isn''t showing any errors and I''m
completely stumped... Any ideas of where to look?
using: