TWebStringGrid ColAlignment not found

Hi Bruno,

I would like to right align text in the cells from first column in a Webstringgrdi. I tried to use ColAlignment, however, it threw me an error : identifier not found 'ColAlignments', could you please give me some help about how to fix that? or is there alternative way to set that up?

Thanks,

We investigated this and we fixed this.
This will be addressed in the upcoming v1.8.5.0

Still a problem (version 1.91) if compiled for Release and fixedcols=1.
If compiled for Debug it actually works fine with fixedcols. Kind of strange...
Javascript error message: "Uncaught ReferenceError: j is not defined at Object.rtl.module.rtl.createClass.UpdateGridAlignment ...."

Another problem is I cannot set rowcount inside beginupdate ... endupdate.

This does not work properly:

  grid.beginupdate;
  try
    grid.rowcount:=100;
    ....
    ....
  finally
    grid.endupdate;
  end;

but this works fine:

  grid.rowcount:=100;
  grid.beginupdate;
  try
    ....
    ....
  finally
    grid.endupdate;
  end;

Thanks for reporting.
We applied a fix for it.