Michael

Results 4 comments of Michael

IMHO, it should be a super set of existing requests. Explain myself: **Before**, if want to update a field **and** get _real_ value in it (workflow/trigger field updates), you should...

May it be the problematic code: `.JColResizer{table-layout:fixed;}` ?

So, the issue is the way APEX `.split()` works. `'a,b,c'.split(',')` => `(a,b,c)` `'a,b,'.split(',')` => `(a,b)` `'a,,'.split(',')` => `(a)` and so on... It may be solved with regex...