Jump to content

GoldLine

uniGUI Subscriber
  • Posts

    62
  • Joined

  • Last visited

Posts posted by GoldLine

  1. Hello,

    try this and you'll see how it works:

    /* special button design */
    .mainBtnBg {
        border-radius:0px !important;
        border: 2px !important;
    }
    .mainBtnBg .x-inner-el {
        icon-color: #ffffff !important;
        background-color: orange;
        border-radius:0px !important; 
        /*padding-top: 0 !important;*/
    }
    .mainBtnBg:hover {
        background-color: green;
        border-radius:0px !important;
        border: 2px !important;
    }
    .mainBtnBg .x-badge-el {
        color: green;
        background-color: lime;
        background-image: none;
        border-radius: 10px;
    }

    • Like 1
  2. Hi 

    TUnimDatePicker have a bug sometimes show selection menu at year 2039 although the selected date as in the screen shoot show 27/06/2019, this mainly happen after the form leases focus by showing a side menu or something like that.

    Using unim-1.90.0.1535

    Any solution for this ???

    Thanks.

    1078127083_WhatsAppImage2019-06-28at1_25_21PM.jpeg.35fa3d318d72c37e149ca4aaaa307033.jpeg

  3. 20 hours ago, Sherzod said:

    Hi,

    Sorry for the late reply.

    Try this approach for now:

    
    procedure TMainmForm.UnimFormReady(Sender: TObject);
    begin
      with UnimTabPanel1 do
        if not TabBarVisible then
          JSInterface.JSCall('getTabBar().setVisibility', [TabBarVisible]);
    
    end;

     

    Hi Sherzod,

    sorry for late reply, too.

    Works perfect, thanks a lot.

    • Like 1
  4. On 6/18/2020 at 10:52 AM, RValli said:

    Please can checkbox support be added to Mobile/Touch components -  TUnimDBGrid / TunimDBList etc, similar to TUniDBGrid. This feature is a "must have", to allow users to multi-select records in a dataset, on mobile apps.

    Thanks

    Rafick

    +1

  5. 7 minutes ago, Sherzod said:

    titlebtns4.png.ffdae941e01905d90474687b5f7899d4.png

    Okay, I think I've found the cause.

    I use FontAweSome5Pro. I installed FontAweSome5Pro following these instructions:
     

    Update font awesome 5 pro on extJS 7

    create a folder with the original name inside the folder ..\ext-7.0.0(version)\build\packages\font-awesome\resources and move the files and folder to the original folder

    Copy the webfonts folder to ..\ext-7.0.0(version)\build\packages\font-awesome\resources
    Copy the all.min.css folder to ..\ext-7.0.0(version)\build\packages\font-awesome\resources
    rename all.min.css to font-awesome-all.css

    Make the following adjustments to font-awesome-all.css:

    replace ../webfonts to ./webfonts

    Add these lines at the end:
    .x-fa:before,
    .x-fas:before {
        font-family: 'Font Awesome 5 Pro' !important;
    }
    .x-far:before {
        font-family: 'Font Awesome 5 Pro' !important;
    }
    .x-fab:before {
        font-family: 'Font Awesome 5 Pro' !important;
    }
    .x-fad:before {
        font-family: 'Font Awesome 5 Pro' !important;
    }

  6. 2 minutes ago, Sherzod said:

    Hi,

    For example for MainmForm:

    titlebtns0.png.b677d08b98a02a6952b63259cbbcd4bd.png

    titlebtns1.png.21af31c823053fdd20bc88ead8d75c13.png

    titlebtns2.png.b79c0d10b0d498d3512c417bfc84b39b.png

    Hi Sherzod,

    thanks a lot, but I think you missunderstood me.

    I meant how to change the left margin of the image (on button).

    Image is adjusted left and I want to center image on the titlebutton.

    Is it possible?

  7. Hi Sherzod,

    thank you for your help.

    Quote
    
    procedure TMainForm.UniFormCreate(Sender: TObject);
    begin
      UniDBPivotGrid1.JSInterface.JSAssign('matrix.textGrandTotalTpl', ['Endsumme']);
    end;

     

    => It works when I use forms but unfortunately not when I use frames like I do.

     

    Quote

    Can you please clarify?

    The width property of column "Artikelgruppe" is defned with value 250 but header column of "Artikelgruppe" does not grow.

    image.png.bfdeb12b8b68b544c711b256a5eb67fb.pngimage.png.1fdfaf16ca81935052f89394ad1906e2.png

    Is it possible to change the width of "Artikelgruppe"in my coding?
     
    • Like 1
  8. Hello,

    I've some qustions for pivotgrid handling:

    1. Is there a possibility to change header-column width programmatically?
    2. How can I change/translate summary text "Grand total" in last row?
    3. Is there a possibility to expand all and collapse all  nodes programmatically?

    Thx.

    pivot.png

×
×
  • Create New...