search for: set_valu

Displaying 20 results from an estimated 46 matches for "set_valu".

Did you mean: set_value
2008 Feb 13
2
javascript pop window from form how to update field back to main form
Hi I have question where I run web form. Now on this form I have one field with link select user. This link will pop up new window with javascript and on this window I have form with items which end user can select. Once selection is done end user press button Select User. Now I need to close that javascipt window and send back value of that selection back to form and to the field which has
2005 Aug 19
9
Patch for listbook.rb
Attached is a patch file for listbook.rb 1) Message box scrolls properly now 2) Blank lines are skipped when adding pizzas and ice cream _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Jul 20
0
[1124] trunk/wxruby2/samples/bigdemo/wxGauge.rbw: Use Wx::Timer instead of evt_idle to drive Gauge sample, to avoid 100%
...>+ def initialize(parent, log) + super(parent, -1) + @log = log + @count = 0 </ins><span class="cx"> </span><del>- def idle_handler(event) - @count = @count + 1 - if @count > 50 - @count = 0 - end - @g1.set_value(@count) - @g2.set_value(@count) - @g3.set_value(@count) - - # Tells wxWindows that more processing is required. This function can be called by an OnIdle handler - # for a window or window event handler to indicate that wxApp::OnIdle should forward the OnIdle ev...
2009 Oct 21
2
Doc Value Query in Omega
Folks, Is it possible to query a document value (doc.set_value(i, val)) as part of the Omega query. I know how to do it from code. Is there a query markup to use for Omega? ...Thanks, ...Ken
2014 Aug 08
2
[PATCH 1/2] Add type checking, support integers as value
Before this patch, Python would segfault once you pass a non-string key or value to node_set_value. It was also not possible to set bytes on Python 3 as Unicode was assumed (Python 2 was not affected by this). This patch fixes recognition of bytes for Python 3, but in addition it recognizes ints (includes 'long' in Python 2) for DWORD (LE + BE) and QWORDs. For this purpose, a new field...
2007 Apr 13
0
[949] branches/wxruby2/wxwidgets_282: Changes in Gauge API 2.6->2.8, remove comment cruft in header
...lass="cx"> </span><span class="cx"> A gauge is a horizontal or vertical bar which shows a quantity (often time). </span><ins>+ +Gauge supports two working modes: determinate and indeterminate progress. + +The first is the usual working mode (see "set_value":#Gauge_setvalue +and "set_range":#Gauge_setrange) while the second can be used when +the program is doing some processing but you don''t know how much progress is +being done. +In this case, you can periodically call the "Pulse":gaugepulse.html +function to make t...
2007 Dec 04
0
[PATCH] Fix help message of on_xend_stop
...gards, Kan diff -r 3057f813da14 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Thu Nov 29 19:30:33 2007 +0000 +++ b/tools/python/xen/xm/create.py Tue Dec 04 13:42:20 2007 +0900 @@ -514,7 +514,7 @@ gopts.var(''on_xend_start'', val=''ignore|s fn=set_value, default=''ignore'', use=''Action to perform when xend starts'') -gopts.var(''on_xend_stop'', val=''continue|shutdown|suspend'', +gopts.var(''on_xend_stop'', val=''ignore|shutdown|suspend''...
2006 Jul 26
0
[PATCH] [HVM] enable sound card support for qemu
...Should device models use graphics?") -gopts.var(''audio'', val=''no|yes'', - fn=set_bool, default=0, - use="Should device models enable audio?") +gopts.var(''soundhw'', val=''audiodev'', + fn=set_value, default='''', + use="Should device models enable audio device?") gopts.var(''vnc'', val='''', fn=set_value, default=None, @@ -630,7 +630,7 @@ def configure_hvm(config_image, vals): """Create the c...
2007 Feb 14
5
FormTestHelper should change hidden fields
Railsoids: FormTestHelper rules. It tests your response.body form at the same time as it triggers your action, with all the parameters in that form. This obviously improves quality. But it took issue with this: submit_form ''validate_stuff'' do |form| form[''IBhidden''] = ''validate'' end The field IBhidden is a hidden field. To be
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...python/xen/xm/create.py Wed Nov 28 13:36:56 2007 +0000 +++ b/tools/python/xen/xm/create.py Wed Nov 28 09:48:59 2007 -0700 @@ -453,6 +453,10 @@ gopts.var(''usbdevice'', val=''NAME'', gopts.var(''usbdevice'', val=''NAME'', fn=set_value, default='''', use="Name of USB device to add?") + +gopts.var(''guest_os_type'', val=''NAME'', + fn=set_value, default=''default'', + use="Guest OS type running in HVM") gopts.var(...
2006 Jun 01
4
how to: update a select from another select
Hi all, I woke up at 4AM this morning to find a solution for this and it is still not working.. grrr! lost sleep for nothing! Anyways, I have 2 select list and I want the content of the second list to be updated according to what is selected in the first list. I did this in the past by having my application generate all the possible content of the second list and make some Javascript to do
2010 Jul 07
1
[PATCH] hivex: add hivex_set_value api call and ocaml/perl bindings, tests
...@@ -71,6 +71,7 @@ and argt = (* Note, cannot be NULL/0 unless it | AOpenFlags (* HIVEX_OPEN_* flags list. *) | AUnusedFlags (* Flags arg that is always 0 *) | ASetValues (* See hivex_node_set_values. *) + | ASetValue (* See hivex_node_set_value. *) (* Hive types, from: * https://secure.wikimedia.org/wikipedia/en/wiki/Windows_Registry#Keys_and_values @@ -304,8 +305,15 @@ subnodes become invalid. You cannot delete the root node."; "set (key, valu...
2007 Jun 26
0
[1078] trunk/wxruby2: Map evt_spinctrl to SpinEvent instead of CommandEvent; add example to bigdemo
...g - @count = 0 - - Wx::StaticText.new(self, -1, "This example uses the Wx::SpinCtrl control.", Wx::Point.new(45,15)) - - sc = Wx::SpinCtrl.new(self, -1, "", Wx::Point.new(30, 50), Wx::Size.new(80, -1)) - sc.set_range(1,100) - sc.set_value(5) - # sc.enable(false) - end </del><ins>+ def initialize(parent, log) + super(parent, -1) + @log = log + @count = 0 + + Wx::StaticText.new(self, -1, + "This example uses the Wx::SpinCtrl control.", +...
2010 Jul 03
1
[PATCH] hivex: add hivex_set_value api call
I'm not entirely sure the generator/generator.ml changes are as correct as they could be. I'm not very familiar with Caml. The hivex_node_set_value call builds up a list of hive_set_values by walking the existing values at the node, adding or replacing the passed hive_set_value as necessary, then shoving the list at hivex_node_set_values. Not included: Perl or OCaml binding glue. I'm not on the list, please CC me to replies. Thanks! --...
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
...x#set_insertion_point_end":#ComboBox_setinsertionpointend </span><del>-* "ComboBox#set_selection":#ComboBox_setselection </del><ins>+* "ComboBox#set_selection":#ComboBox_setselectionrange </ins><span class="cx"> * "ComboBox#set_value":#ComboBox_setvalue </span><span class="cx"> * "ComboBox#undo":#ComboBox_undo </span><span class="cx"> </span><span class="lines">@@ -74,36 +76,26 @@ </span><span class="cx"> </span><s...
2006 Apr 27
5
Major Breakthrough?
Attached are patches to make the textctrl.rb sample work fully. Note the new %directorargout typemap I added to fix wxWindows calling into SWIG. I don''t know if this can fix all such problems or not. Let me know what you think. I also rubified the sample a little bit more. Also, note that I fix the << operator so the function can be called. I hope I did this right. Roy
2010 Jul 03
1
[PATCH] hivex: add hivex_set_value api call and perl bindings, tests
...@@ -71,6 +71,7 @@ and argt = (* Note, cannot be NULL/0 unless it | AOpenFlags (* HIVEX_OPEN_* flags list. *) | AUnusedFlags (* Flags arg that is always 0 *) | ASetValues (* See hivex_node_set_values. *) + | ASetValue (* See hivex_node_set_value. *) (* Hive types, from: * https://secure.wikimedia.org/wikipedia/en/wiki/Windows_Registry#Keys_and_values @@ -304,8 +305,15 @@ subnodes become invalid. You cannot delete the root node."; "set (key, valu...
2008 Aug 07
0
[PATCH] fix trivial typo. s/ciredump-restore/coredump-restart/
...t;) -gopts.var(''on_crash'', val=''destroy|restart|preserve|rename-restart|coredump-destroy|ciredump-restart'', +gopts.var(''on_crash'', val=''destroy|restart|preserve|rename-restart|coredump-destroy|coredump-restart'', fn=set_value, default=None, use="""Behaviour when a domain exits with reason ''crash''. - destroy: the domain is cleaned up as normal; -- yamahata _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.c...
2007 May 03
0
need javasrcipt help
hi, I have two button in my Rails page. one is submit and other is delete. for submit button, I use: <%= submit_tag "submit" %> In the case of delete button I place a ''onclick'' javascript function to call my ''set_value'' function, <script language="javascript"> function sel_value(){ var command_del=confirm(''Really?''); if(command_del==true){ var cell_no=document.forms[0].selcell_id.value; //I want to open the ''delete_data.rhtml'' pa...
2015 Dec 23
5
Instrucciones uso rvest
Hola buenos días: Os remito una duda (en un documento word para su mejor expresión) sobre el uso de la libreria rvest. Mi problema es que como no soy informatico me pierdo un poco, he visto los ejemplos que hay colgados y los he seguido, pero el tema es que quiero acceder a los datos del INE, que en ocasiones estan un poco escondidos con menu de selecciones y no se como hacerlo con rvest para