search for: addrow

Displaying 3 results from an estimated 3 matches for "addrow".

Did you mean: add_row
2002 Dec 09
0
Mailman 'held' messages (was SPAM on List...)
...s a fix to escape html in the message excerpt): $ diff -c admindb.py.orig admindb.py *** admindb.py.orig Wed Jul 25 13:46:29 2001 --- admindb.py Sat Jun 22 17:48:09 2002 *************** *** 218,227 **** buttons = Table(cellspacing="5", cellpadding="0") buttons.AddRow(map(lambda x, s=' '*5: s+x+s, ('Defer', 'Approve', 'Reject', 'Discard'))) ! buttons.AddRow([Center(RadioButton(id, mm_cfg.DEFER, 1)), Center(RadioButton(id, mm_cfg.APPROVE, 0)),...
2006 Feb 22
0
Need help getting value from text_field_with_autocomplete
...quot; id="new_product_button" value="Add New Product to PO" onClick="<%= remote_function(:update => ''new_row'', :with => %q(''product[product_code]=$(''product_product_code'')''), :url => { :action => ''addRow'' }, :position => :after) %>"</td> </tr> Here is the controller for addRow: def addRow @product = Product.find_by_product_code(params[:product][:product_code]) @completeRow = render_to_string(:partial => ''complete_row'') end Here is the...
2010 Mar 30
1
Adding RcppFrame to RcppResultSet causes segmentation fault
...ing("fail"); // level 2 // First row (this one determines column types). std::vector<ColDatum> row1(numCol); row1[0].setStringValue("a"); row1[1].setDoubleValue(3.14); row1[2].setFactorValue(levelNames, numLevels, 1); row1[3].setDateValue(RcppDate(7,4,2006)); frame.addRow(row1); // Second row. std::vector<ColDatum> row2(numCol); row2[0].setStringValue("b"); row2[1].setDoubleValue(6.28); row2[2].setFactorValue(levelNames, numLevels, 1); row2[3].setDateValue(RcppDate(12,25,2006)); frame.addRow(row2); RcppResultSet rs; rs.add("PreDF",...