Jump to content

Marlon Nardi

uniGUI Subscriber
  • Posts

    613
  • Joined

  • Last visited

  • Days Won

    70

Posts posted by Marlon Nardi

  1. Farshad, the UniGui is already compatible with the Ext JS 4.2.4?

    Is fixed over 100 bugs for this release, hopefully the TabOrder problem has also been corrected :)

     

    https://www.sencha.com/blog/ext-js-4-2-4-is-now-available/

     

    It’s my pleasure to announce the release of Sencha Ext JS 4.2.4. This version contains over 100 bug fixes. It is available to our customers with current Maintenance and Support subscriptions. You can download Ext JS 4.2.4 from the Support Portal and view the updated API documentation online. Details about the issues addressed in this release can be found in our release notes.

    Download Now

    If your support contract has lapsed, contact Sales to renew today.

    Sencha Maintenance and Support

    Sencha Maintenance and Support ensures your team will stay up to date with the latest features and bug fixes for Ext JS. Maintenance and Support subscribers have immediate access to our nightly builds that contain critical fixes to the frameworks, and our Sencha Support engineers can help you tackle any problem. You also get:

    • Free upgrade to next major release (within 12 months)
    • Early access to custom bug fixes
    • Premium forum access
    • Access to nightly development builds
    • Access to our online ticketing system
    • Remote troubleshooting

    As always, we’re grateful to our customers for their continuous feedback and bug reports. We’re excited to hear how this release improves your Ext JS 4.2 apps.

     

  2. Hi guys

     

    I'm using LDAP authentication too. Firstly I was using LDAPAdmin but it seems this project was abandoned and doesn't work for 64 bits. So I decided to find other solution which was Ararat Synapse and works perfect in 64 bits, very light and easy to use. Here is an example:

    function TUniLoginForm1.LDAPAuth(AUsername, APassword: String): Boolean;
    var
      LLdap: TLDAPsend;
    begin
      Result := false;
      LLdap := TLDAPsend.Create;
      try
        LLdap.TargetHost := 'ldap_server_name_or_ip';
        if not AUsuario.ToLower.StartsWith('domainname') then
          AUsuario := Format('domainname\%s', [AUsername.ToLower]);
        LLdap.UserName := AUsername;
        LLdap.Password := APassword;
        LLdap.Login;
        Result := LLdap.Bind;
      finally
        LLdap.Free;
      end;
    end;
    

    The official LDAP sample is here

     

    Thanks for sharing.

     

    the project Ararat Synapse has features that I needed. ;)

  3. Farshad,

    I have a downward component edit amending the mask at runtime. Implement it in the Components TuniEdit and TuniDBEdit.

    JSCode('Ext.onReady ( function () {$("#' + Self.JSName +
        '_id-inputEl").mask("' + FMask + '");});');
    
    • Merged Ext JS & Sencha Touch - With Ext 6, you now have access to all the UI components from Ext JS and Sencha Touch, from a single code base, that allows you to selectively deliver the appropriate user experience across all devices. By virtue of using the common core, Sencha Touch UI components inside Ext JS 6 now get the MVVM support, data binding, and even the mouse and click support, in case you want to use them on desktops. There are also a number of enhancements in Ext JS 6, especially in the areas of Accessibility, Charts, and Grid.

    • Upvote 1
  4. Good morning Farshad,

    I wonder how do I use the async tag for loading the javascript.

    Today my applications use many external javascript (not UniGui) and the page is not displayed while all javascript is loaded.

    Today I use this:

     

    Self.CustomFiles.Add ('my.js');

    or

    UniAddJsLibrary ('/my.js' True, [upoFolderJS, upoPlatformBoth]);

    One solution to this would be to use the async example tag:

    <script async src="my.js">

    https://developers.google.com/speed/docs/insights/BlockingJS

     

    how I do it in UniGui?

  5. RAD Studio Mobile Tutorials - Free eBook

     

    Get all the information you need to know on developing mobile apps for Android and iOS with RAD Studio, Delphi and C++Builder XE7 in this free 300+ page ebook.

     

    Download the free RAD Studio Mobile Development Tutorials ebook

    tutorials.png

    Topics include:

     

    • Setting up the tools and SDKs
    • Creating your first mobile app
    • Best practices for using components
    • User interface design
    • Connecting with data
    • Push notifications
    And much more.
    • Upvote 1
  6. Bom dia Nirlan,

     

    Você está utilizando gráficos em seus relatórios?

     

    Existem vários comentários aqui no fórum, falando de problemas quando utilizado gráficos, eu particularmente não utilizo gráficos, mas tenho alguns problemas com FastReport também.

     

    Estou iniciando o desenvolvimento de um servidor especifico para relatórios, não tendo contato direto com o UniGui, acredito ter alguma incompatibilidade.

×
×
  • Create New...