[REBOL] Rebgui error in table widget
From: compkarori::gmail::com at: 17-Mar-2007 10:24
Got this error:
make object! [
code: 303
type: 'script
id: 'expect-arg
arg1: 'index?
arg2: 'series
arg3: [series! port!]
near: [index? find parent-face/data last-selected]
where: 'action
]
So, I guess the fix in table.r is to try this:
Instead of:
;BEG fixed by Cyphre, sponsored by Robert
if last-selected [
select-row (((index? find parent-face/data last-selected) - 1) / cols) + 1
]
;END fixed by Cyphre, sponsored by Robert
Try:
if all [ last-selected find parent-face/data last-selected ][
select-row (((index? find parent-face/data last-selected) - 1) / cols) + 1
]
--
Graham Chiu
http://www.synapsedirect.com
Synapse-EMR - innovative electronic medical records system