Displaying 5 results from an estimated 5 matches for "searchname".
Did you mean:
search_name
2006 Mar 22
1
RJS - Still not working in IE
...o support evalScripts
This is the complete contents of the .rjs:
page.replace_html ''current_search_name_editor'', :partial =>"search_name"
page.replace_html ''search_pane'', :partial => "search"
My view contains:
...
<div class="SearchName" id="current_search_name_editor">
<%= render :partial => "search_name" %>
</div>
<%= start_form_tag( {:action=> "master"}, {:id =>"conditions_form"} ) %>
<div id="search_pane">
<%= render :partial =...
2006 Jun 19
6
SQL Search Qustion
I am working on writing a search method where a user can type a string
of words and I return all the objects that have fields that match all of
the words in one or a combination of fields.
Person
first_name
last_name
Pet
name
Person has_many :pets
I want to write some SQL so that if I search for "Tony AAAA" I will get
all the people who have Tony and AAA either in their
2017 Mar 01
0
NetworkManager and Half DHCP not work correct - second time.
Hello Guys,
today i strungle in my office and at home.
1. The networkadapter works before on "full" dhcp.
2. change to half (means searchname and searchserver manual)
3. order was correct inside the config, but in seperated network
configs:
PEERDNS=yes ?????
5. DNS Server where in wrong direction in the consol.
4. I changed the PEERDNS entry at home manually.
Reboot. Everything works as expected, nameserver in right order (NEW,
OLD,...
2009 Mar 21
0
[PATCH 1/1] SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
...ccessful
; ZF set
;
; Assumes CS == DS == ES, and trashes BX and CX.
;
-searchdir:
+searchdir4any:
mov eax,[CurrentDir]
+ mov dl,0
cmp byte [di],'/' ; Root directory?
jne .notroot
mov eax,[RootDir]
@@ -1332,7 +1336,7 @@ searchdir:
dec dx
cmp dx,si
jz .founddir
-
+.searchname:
mov [PrevDir],eax ; Remember last directory searched
push di
@@ -1344,7 +1348,58 @@ searchdir:
cmp byte [di-1],'/' ; Do we expect a directory
je .isdir
- ; Otherwise, it should be a file
+ ; Otherwise, desired file is found
+ ret ; Done!
+
+ ; If we expected a directory...
2006 Mar 18
9
RJS - not working in IE
I searched thru all the postings about RJS, and I didn''t find one person
who complained of problems specific to IE, but that''s what I''ve got.
My environment is:
Rails 1.0 + RJS Plugin
Updated Javascripts to Scriptaculous 1.5.3 (for evalScripts support)
Monkeypatched in_place_editor to support evalScripts
I have just started using RJS, and I have two .rjs templates.