Jump to content

angman

uniGUI Subscriber
  • Posts

    22
  • Joined

  • Last visited

Posts posted by angman

  1. Hi all, I found the reason ans solved the problem. When you set the autosessionname to true the component generate a new session name for each thread and assign it to all the tables and query components, but only that inside the same form or datamodule. So if you have other dataset that point to the same session but are in other forms or datamodules, you must update their sessionname to the autogenerated name of the session

  2. Hi all, I have a form with a unidbgrid with web options setted in default mode Page true, Pagesize 25. I inherit from this to get some other forms, now in some of them the paging bar is visible, while in others it is diplayed only a white panel.

  3. Hi, I have an application that use a dbisam 4 database and that is developed using the ungui trial version FMSoft_uniGUI_Complete_Professional_1.90.0.1509_Trial for a customer that owns the licensed version. The application on my developing pc run without problems, but on the customer's server after opening database on executing the first query on a very small table the application freeze with server cpu that go to 100% usage, and after a while get the error Connection error communication failure.

    The database  the connection session and the query components are all put on the main module.

     

  4. Hi, I have some problems  with connection and sessions of an application that I am converting from intraweb to Unigui. At this moment I am using the FMSoft_uniGUI_Complete_Professional_1.90.0.1509_Trial. So to test some concurrent  connections I use 2 different tab in my browser. Sometime got the error Session name ..... is not valid.

    Do you have some sample using dbisam to send me?

    Thank you

     

  5. Hi,  I put this

    procedure TFStampeSLP.unpdfrmDocFrameLoaded(Sender: TObject);
    begin
      UniSession.AddJS(unpdfrmDoc.JSName + '.iframe.contentWindow.document.' +
        'getElementById ("download").style.display = "none"');
      UniSession.AddJS(unpdfrmDoc.JSName + '.iframe.contentWindow.document.' +
        'getElementById ("secondaryDownload").style.display = "none"');

          UniSession.AddJS(unpdfrmDoc.JSName + '.iframe.contentWindow.document.' +
        'getElementById ("print").style.display = "none"');
      UniSession.AddJS(unpdfrmDoc.JSName + '.iframe.contentWindow.document.' +
        'getElementById ("secondaryPrint").style.display = "none"');

    end;


    It is working, but when the application run, got this ajax error:

    O1C8.iframe.contentWindow.document.getElementById ("download").style.display = "none";O1C8.iframe.contentWindow.document.getElementById ("secondaryDownload").style.display = "none";O1C8.iframe.contentWindow.document.getElementById ("print").style.display = "none";O1C8.iframe.contentWindow.document.getElementById ("secondaryPrint").style.display = "none";

    can you suggest a solution?

     

     

×
×
  • Create New...