We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d76be20 commit 9572411Copy full SHA for 9572411
1 file changed
RubyScript/src/org/knime/ext/jruby/package.html
@@ -26,13 +26,13 @@
26
<code>
27
count = $inData0.length
28
$inData0.each_with_index do |row,i|
29
- $outContainer << row.string('Hi!').int(row.getCell(0).to_s.length).append
+ $outContainer << Cells.new.string('Hi!').int(row[0].to_s.length)
30
setProgress "#{i*100/count}%" if i%100 != 0
31
end
32
</code>
33
34
<p>
35
-The <code>RubyScriptModel</code> cannot predefined columns.
+The <code>RubyScriptModel</code> allows to use existing and add new columns.
36
37
The <code>RubyScriptDialog</code> allows loading and editing of Ruby script.
38
0 commit comments