Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Posts posted by mhmda

  1. Mar7aba,

     

    You can use:

     

    1. ClientEvents->added:

    sender.setInputCls('mycss');
    

    2. (OR) ClientEvents->UniEvents->beforeinit:

    config.InputCls('mycss');
    

    CSS -> ServerModule->CustomCSS:

    .mycss
    {
     color:#91b4cd !important;
     -webkit-text-fill-color:#91b4cd !important;
     font: 14px Tahoma, Helvetica, sans-serif !important;
     font-weight:bold;
    }
    
  2. I don't think that this is fair at all  :excl:  :(

     

    We love unigui and we support unigui by helping each other... if there is "black" members among us then don't blame or punish us all... 

     

    Since this change I don't have the ability to view or download attached files/images I see my self as handicapped !

  3. We use Android studio to build native app with only "browser" that loads our unimobile app :-) and we do the same for iOS (swift).

     

    That way your client can download your app from play store or apple store :-) and the bonus here you can update your program any time without updating the native app :-)

    • Upvote 2
  4. Hello,

     

    We are looking for a distributor in his local country for our new website:

     

    the most professional hotels comparison system in the world of travel professionals. 
    We offer travel professionals from all over the world the chance to profit from some of the largest web travel brands in the industry; that’s right, you could be earning commissions right now from some of the top names in travel. 
    We serve a new generation of travel professionals that wants to earn more money, consistently and effectively while having fun

     

    if you are interested, please contact us (please specify your country name): info@3msoft.net 

  5. Hi,

     

    As default behavior of dbgrid is performing sorting in server side, but sometimes you fetch all data into grid (no paging) and the data is already in client, so why return to server to sort data !!

     

    Do the sort in client side:

     

    1. Disable remoteSort (store):

     

    s1.png

     

     

     

    2. Set 'click' event on column header and do sorting:

     

    s2.png

     

     

    Hope this will help you :-)

     

    • Like 1
    • Upvote 4
  6. Mar7aba,

     

    Do you use 'Free form' or 'Application form?

     

    Did you include the pas unit in uses clause?

    uses
      uniGUIVars, MainModule, uniGUIApplication, UnitForm2;
    
    Form2.Show();
    
×
×
  • Create New...