Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12125
  • Joined

  • Last visited

  • Days Won

    810

Everything posted by Farshad Mohajeri

  1. In my PC it behaves like this: DecimalSeparator = , ThousandSeparator= . DisplayFormat = Empty , Value diplayed as 1.23 (expected behavior) DisplayFormat = 0.00 , Value diplayed as 1,23 FieldType = TFloatField Can you send a simple test?
  2. I can't reproduce. Finally what is your Delphi version and browser type ?
  3. What is the field type?
  4. Can you provide following info: DecimalSeparator ThousandsSeparator DisplayFormat Your Field data Value displayed in the grid.
  5. 1000 is not exact value. It must be height of your control. Try 2nd method I posted above.
  6. Actually what you need is TUniHTMLEditorFrame which will be available in next release.
  7. Also this: var xx=MainForm.UniHTMLFrame1.el.child(".x-panel-body").dom;xx.scrollTop=xx.scrollHeight;
  8. It is very similar to way Indy handle HTTP requests. We have ARequest: TIdHTTPRequestInfo and AResponse:TIdHTTPResponseInfo Objects
  9. This issue #1154 will be fixed in next build. Workaround: function OnAfterrender(sender) { sender.getEl().dom.wrap="OFF"; }
  10. What is the "strange" code you get? Do you have PDF viewer installed on your client PC?
  11. It should be scrollTo() not ScrollTo().
  12. UniStringGrid is not optimized for sending big number of rows in a loop. It is in todo list. I recommend using uniDBGrid anyway.
  13. How many rows do you send in above loop?
  14. OK. You need to increase height of your Toolbar.
  15. Captions are shown only when UniToolBar->ShowCaption is true
  16. !!! File is removed by accident during server maintenance. I'm restoring it now. Try again in five minutes. Thanks
  17. UniDBNavigator simply calls Next on Dataset. Since you manually fill StringGrid I need to see your code. It would be better if you send a test case created with Clientdataset.
  18. Your Dataset doesn't fetch all records in advance. You must solve it by forcing it to fetch all recs. Dataset.Open; Dataset.Last; Dataset.First;
  19. TExtGridRowSelectionModel is defined in ExtGrid.pas which is under ExtPascal folder. Can you verify this?
  20. Applying updates to XE2 can be problematic sometimes. Best way is a fresh install. Thanks for feedback.
  21. Have you went through installation instructions?
  22. You must be sure you don't have any other version of ExtPascal in your library path.
×
×
  • Create New...