View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004868 | JEDI VCL | 00 JVCL Components | public | 2009-07-21 10:47 | 2009-07-21 11:26 |
| Reporter | ZENsan | Assigned To | obones | ||
| Priority | normal | Severity | tweak | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | Daily / GIT | ||||
| Target Version | Fixed in Version | 3.38 | |||
| Summary | 0004868: JvRichEditToHtml incorrectly converts bullets with alignment | ||||
| Description | There is code in JvRichEditToHtml.pas function TJvRichEditToHtml.ParaToHtml(Value: TJvRichEditParaAttributesRec): string; begin case Value.Alignment of paLeftJustify: Result := 'ALIGN="LEFT"'; paRightJustify: Result := 'ALIGN="RIGHT"'; paCenter: Result := 'ALIGN="CENTER"'; end; ....... But must be like this: function TJvRichEditToHtml.ParaToHtml(Value: TJvRichEditParaAttributesRec): string; begin case Value.Alignment of paLeftJustify: Result := 'STYLE="text-align:left"'; paRightJustify: Result := 'STYLE="text-align:right"'; paCenter: Result := 'STYLE="text-align:center"'; end; ...... | ||||
| Tags | No tags attached. | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2009-07-21 10:47 | ZENsan | New Issue | |
| 2009-07-21 11:26 | obones | Note Added: 0015870 | |
| 2009-07-21 11:26 | obones | Status | new => resolved |
| 2009-07-21 11:26 | obones | Fixed in Version | => Daily / SVN |
| 2009-07-21 11:26 | obones | Resolution | open => fixed |
| 2009-07-21 11:26 | obones | Assigned To | => obones |