Displaying 8 results from an estimated 8 matches for "selectitem".
2005 Jul 19
0
quick dragdrop question
...dropped - I need an
event callback that has a reference to both the element being dropped (the LI),
and the target element that it''s being dropped onto (the UL). I''ve found the
Sortables.create option for creating an onUpdate and onChange handler, and done
the following:
function selectItem(target){
window.status=target.id;
}
window.onload=function(){
Sortable.create("firstlist",{tag:''div'',containment:["firstlist","secondlist","firstCell","secondCell"]});
Sortable.create("secondlist",
{ tag:'...
2005 Jul 20
3
examples of drag n drop
...s a reference to both the element being dropped (the
> LI),
> and the target element that it''s being dropped onto (the UL). I''ve found
> the
> Sortables.create option for creating an onUpdate and onChange handler, and
> done
> the following:
>
> function selectItem(target){
> window.status=target.id;
> }
> window.onload=function(){
>
> Sortable.create("firstlist",{tag:''div'',containment:["firstlist","secondlist","firstCell","secondCell"]});
> Sortable.create("secondlist...
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...always 20x20 and can easily be created in GIMP.
- Add a "search" function that allows searching for a symbol by name.
(This one's not trivial due to the lazy construction of tree nodes.
Basically what it needs to do is walk the tree (avoiding cycles), and call
treeCtrl->SelectItem and treeCtrl->EnsureVisible on the node whose caption
contains the search string. I have some notes on how to do this.)
- Make sure the app isn't leaking memory when loading a new module over
an old one.
In the mean time, I'll be working on getting DWARF derived type DIEs to
di...
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...easily be created in GIMP.
> - Add a "search" function that allows searching for a symbol by name.
> (This one's not trivial due to the lazy construction of tree nodes.
> Basically what it needs to do is walk the tree (avoiding cycles), and call
> treeCtrl->SelectItem and treeCtrl->EnsureVisible on the node whose caption
> contains the search string. I have some notes on how to do this.)
> - Make sure the app isn't leaking memory when loading a new module over
> an old one.
>
> In the mean time, I'll be working on getting DWARF...
2006 Jul 03
6
Rjs $("aaa").insertHtml is not a function error
Hi,
I''ve searched the list and found that someone had the same problem as me
http://lists.rubyonrails.org/pipermail/rails/2006-May/043760.html
I''m have in my page a link like this
<%= link_to_remote ("Add
#{image_tag(''add.png'')}",:url=>{:action=>''addProduct''})%>
and in my controller
def addProduct
..................
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
I've written a little GUI application that displays an LLVM module as an
expandable tree, which can be useful for examining the module's contents.
Some features:
- Based on wxWidgets, so it's completely cross-platform.
- CMake build script can locate both LLVM and wxWidgets installations
automatically.
- Loads either .ll or .bc files.
- Supports browsing of LLVM types,
2010 Mar 05
0
Wine release 1.1.40
...shell32: Remove WINAPI where it's not needed.
shell32: Use return value on failure updated in Vista+.
shell32: Stub IFolderView implementation for IShellView instance.
shell32: Cast to class data pointer IShellView2 vtable as it's a first member.
shell32: Move SelectItem implementation to IFolderView and use it for IShellView::SelectItem.
shell32: Stub IShellView2::SelectAndPositionItem() over IFolderView::SelectAndPositionItems().
Paul Andrew Panon (6):
wined3d: Rename GL_VENDOR to HW_VENDOR.
wined3d: Add a real GL vendor detection.
wined3...
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a
version number and packaged up for download.
Given the nature of SWIG, having a lot more people use it would probably
result in more code contributions to this project.
Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG
is fairly stable right now in terms of frequency of changes...