Jump to content

herculanojs

uniGUI Subscriber
  • Posts

    565
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by herculanojs

  1. It's all commented It's all commented on. And they were things that were working normally And there are no custom js for mobile platform
  2. c is not a constructor I definitely can not understand what causes this damn error. Everything working normally, you updated the version and things that were working normally start to give problems. This has been a constant struggle. What does the core try to do that occurs? There has to be a message, something more friendly so we can understand and find the problem. I have an ERP operating on more than 300 100% unigui customers today. I can not stay with these problems, which occur in those versions. This discredits my software, and unigui itself. The change in the form of the messages was a headache that consumed many hours and inconveniences to the customers. You can not test a whole gigantic ERP like ours in search of small bugs because of the change of a version of unigui. Even more so than this occurs almost every day.
  3. After the migration from version 1424 to 1466, many things occurred due to the change of the js. Yet some things are still strange. In some completely normal situations, for example, a form that is being called in showmoal is not displayed in the foreground when the form is called. The form in the foreground example, is in showmodal, where the second form was called See example: form: = CreateForm ('TfrmObservation', false); if form <> nil then begin form.bringTofront; if form.ShowModal in [mrOK, mrYes] then begin end; end else form.Close; end; What could be causing these strange behaviors?
  4. Only work on internal network
  5. We have now implemented support for fastreport, reportbuilder, and acbrbalanca My quarrel with the peripherals gave a truce Ideas and implementations are welcome. As suggestions for adapting to meet the mobile platform
  6. Is it possible through an external button to the example (TUniedit) to call the virtual keyboard informing the control that it will be managing?
  7. Is it possible to get the column summary value of a grid?
  8. I have not found a solution in the forum, other things but nothing for this
  9. Are there any limits on the maximum value? Because I have specified a wait value of 10 minutes, and when a long query is no longer than 40 seconds, it is already showing the message quoted. Current timeout at 600000
  10. Certainly. I usually do this. Maybe I could not find it the way I did, but I usually do it. But I did another search again, under other conditions, and found something related to 6 js, as well as a solution. But thank you, and forgive the hassle It is our pleasure to search the sim forum http://forums.unigui.com/index.php?/topic/10674-dbgrid-color-problem/?hl=drawcolumncell
  11. How can we maintain the color of the selected record when we perform the conditional color change of a particular record using the customdrawcell event In the example image, all records have met the condition that changed the color of the records, but it is not possible to identify which one is selected.
  12. In the long processes executed in the server, and that the client waits for the processing, even presenting the screenmask is being shown message "connection error communication failure: retrying ..." This causes a false impression that the connection has really collapsed. But the process is running, the connection has not been interrupted. Only the process is time consuming and is waiting for a server resposata. How to avoid this behavior?
  13. Sherzod commented: It seems this is a bug of ExtJS Try this approach for now: MainForm -> Script: Add this: Ext.override(Ext.ZIndexManager, { onCollectionSort: function() { var zIndex = this.callParent(); if(!this.front && this.topMost) this.front = this.topMost; return zIndex; } }); Tanks Sherzod
  14. Open calling next to the cradle there is a sample project in which the mentioned error occurs. There is a memo in the main project form that describes the steps to be performed to reproduce the error. To reproduce the problem follow the steps: 1) click the Open form button 1 2) In the open form click on Open Form 2 3) Close of form 2 4) Click on MenuItems Project1.zip
  15. I was using version 1425 and yesterday updated to the latest version 1464. What is happening is that at any given time if you click on a menu it does not open the menus. If it clicks again it opens but the items are frozen and do not close again in any way, just resetting the session.
  16. I have a strange behavior with TUniMenuItem after update to version 1.10.0.1464. It is frozen while the rest of the application continues to run. I have tried to debug some process running, but there is nothing. Just lock the menu Any suggestion
  17. Sample example project I need a solution for that. Project1.zip
  18. Something strange is happening with version 1.10.0.1459, when there is an exception in nested procedures. The example below is pretty simple, but in complex routines this is causing problems. I did not encounter this problem until the upgrade to this version. Example: procedure test; begin try test2; except raise; end; end; procedure teste2; begin try test3; except on e: exception begin MessageDlg (e.Message, mtError, [mbOK]); end; end; end; procedure test3; begin try ... process except on e: exception begin MessageDlg (e.Message, mtError, [mbOK]); end; end; end;
  19. Thus should the columns be arranged according to their creation.
×
×
  • Create New...