Jump to content

molla2005b

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by molla2005b

  1. add frxDBXXXXX components to frxReport1.DataSets

         with frxReport1 do
         begin
     
              DataSets.Add(DM.frxCustomers);
              EnabledDataSets.Add(DM.frxCustomers);
            
         end;

  2. A tiny javascript library to help printing from the web
    Ctrl+P  ===> Open Print Dialog ===> Press Enter To Print or Esc to Cancel
     

    Print.js was primarily written to help us print PDF files directly within our apps, without leaving the interface, and no use of embeds. For unique situations where there is no need for users to open or download the PDF files, and instead, they just need to print them.

    One scenario where this is useful, for example, is when users request to print reports that are generated on the server side. These reports are sent back as PDF files. There is no need to open these files before printing them. Print.js offers a quick way to print these files within our apps.

    Official Demo : https://printjs.crabbly.com/

     

    There are four print document types available: 'pdf', 'html', 'image' and 'json'.

    The default type is 'pdf'.

     

     

    PDFViewer - PrintJS.rar

    • Like 1
  3. windows event viewer:

    Faulting application name: w3wp.exe, version: 10.0.17763.1, time stamp: 0xa7ccada2
    Faulting module name: ntdll.dll, version: 10.0.17763.2686, time stamp: 0xd80dd774
    Exception code: 0xc0000005
    Fault offset: 0x00068109
    Faulting process id: 0x4990
    Faulting application start time: 0x01d84be4f977d0b9
    Faulting application path: C:\Windows\SysWOW64\inetsrv\w3wp.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 0ed670fa-37ec-4b9e-951e-0464978ea67b
    Faulting package full name: 
    Faulting package-relative application ID:

  4. server auto restarted and I can't see "[TUniServerModule]:Shutting Down Server" before any "Starting Server"

    Start Logs :
    10:00:39 []:Starting Server. Module Handle: 0000000006D40000
    10:01:37 []:Starting Server. Module Handle: 0000000006170000
    11:33:30 []:Starting Server. Module Handle: 0000000006910000
    11:42:53 []:Starting Server. Module Handle: 0000000006550000
    11:46:26 []:Starting Server. Module Handle: 0000000005FE0000
    11:59:04 []:Starting Server. Module Handle: 00000000064F0000
    12:02:05 []:Starting Server. Module Handle: 0000000006D80000
    13:16:16 []:Starting Server. Module Handle: 0000000006040000
    13:17:53 []:Starting Server. Module Handle: 00000000066C0000
    13:22:56 []:Starting Server. Module Handle: 0000000006C80000
    13:26:02 []:Starting Server. Module Handle: 0000000006DA0000
    13:28:14 []:Starting Server. Module Handle: 0000000006B70000

  5. hi

    after switch from Default theme to ext-theme-uni_win8   
    HandleFileRequest Exception make a infinity loop of Server Shut Down and Init

    and Terminate all sessions

    min duration between every Shut Down is 1 minute

    UniGui Version 1.90.0.1556

    log samples:

    [HandleFileRequest[170.70.100.100]]
    File not found: C:\Program Files (x86)\FMSoft\Framework\unigui\uni-1.90.0.1556\css\uni-xtheme.css
    File not found: C:\Program Files (x86)\FMSoft\Framework\unigui\ext-7.4.0\build\classic\locale\locale-.js
    File not found: C:\Program Files (x86)\FMSoft\Framework\unigui\unipackages-7.4.0\themes\ext-theme-uni_win8\resources\images\menu\default-menu-parent-left.png

    All ext-theme-uni_*** themes raise HandleFileRequest exceptions
    FMSoft_uniGUI_Theme_Pack_1.90.0.1556 is installed

    full log file is attached (ISAPI Deploy Mode)

    best regard

    A2022-04-07.log

  6. To be correct:
      This problem is not related to UniMainModule.BrowserOptions
      It's appeared after update to the new theme
      This video was sent to us by a customer who tested the unigui desktop demo with IPad Pro

     

     IPad Pro used as a laptop.

      click by mouse not work. but by hand touch is work 

    The mouse cursor is shown as a gray circle

    We need a temporary solution to unblock the mouse

     

    Regards

  7. On 1/5/2022 at 10:16 AM, Sherzod said:

     

    Can you test this solution, for example:

    UniFormattedNumberEdit.ClientEvents.UniEvents -> 

    function beforeInit(sender, config) 
    {
        config.listeners = {
            change: function(field, newVal, oldVal) {
                if (newVal != oldVal) {
                    try {      
                        return !(parseFloat(oldVal.toString().replaceAll(Ext.util.Format.decimalSeparator, '.')) == newVal)
                    } catch (err) {}
                }
            }
        }
    }

    thanks a lot. it's work

     

×
×
  • Create New...