Jump to content

bolossis

uniGUI Subscriber
  • Posts

    54
  • Joined

  • Last visited

Posts posted by bolossis

  1. Hi, i have update today from 1.0.0.1425 to 1.10.0.1463 and figure out that all the images css has changed

     

    The images is not aligned in the button but get cropped :(

     

    Any help how to fix this without changing all the classic theme css file???

     

    Thanks in advance

    post-4324-0-48958700-1527937606_thumb.jpg

    post-4324-0-55640500-1527937613_thumb.jpg

  2. A management page of users.

    But i need only the xy values of the cursor on the UniUrlFrame.

    I don't need any parameters passed from ajax request

     

    Also using build 1425

  3. Does anyone know how i can remove the border from a uniComboBox?

    For example on a UniEdit i can set the BorderStyle to "ubsNone" but how on UniComboBox?

     

    I tried almost all examples from the Forum but nothing works :(

     

    Thanks in advance

  4. Hi, i have make a fresh install of Windows 10,

    after that installed Delphi Seattle, started the software and then i'm trying to install unigui, the latest build (1425).

     

    I try to install everything exactly in the same order with your installation instructions, but i get all the time this error bellow

    I never has a problem with the same version so i don't understand what i;m doing wrong

     

     

    [dcc32 Fatal Error] uSynEdit_R2019.dpk(30): E2225 Never-build package 'designide' must be recompiled

    [dcc32 Fatal Error] uSynEdit_D2019.dpk(35): E2202 Required package 'uSynEdit_R2019' not found

     

    I have attached screenshots from the errors and the library paths.

     

    Hope you can help me out

    Thanks in advance

    post-4324-0-07769300-1522305393_thumb.png

    post-4324-0-14422900-1522305407_thumb.png

    post-4324-0-90145700-1522305414_thumb.png

  5. How can i execute a UniPopUpMenu on UniStringGrid??

     

    I found your example but this works only for UniDbGrid

     

    procedure TMainForm.UniDBGrid1CellContextClick(Column: TUniDBGridColumn; X,
      Y: Integer);
    begin
    PopupMenu1.Popup(X,Y);
    end;
  6. Hi, there maybe a problem with both grids ( UniDBGrid and UniStringGrid ).

     

    When on any grid a fixed row exists then its always in front of everything.

     

    Example project and pics are attached

     

     

     

    Also another question please.

    On a UniStringGrid how can i just on a single click edit the cell and select its content?

    I mean there is no option like ClicksToEdit

     

    Thanks in advance

    post-4324-0-74501500-1520319891_thumb.jpg

    post-4324-0-23611700-1520319900_thumb.jpg

    Test UniGui.rar

  7. An important question.

     

    Can i do show checkboxes like in the example here only for specific rows?

     

    Like show checkbox only for line(row) 1 or 2 etc?

     

     

    This example here is great but when fixed Rows exists then it replace the fixed-rows value with a checkbox

    function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts)
    {
        var me = sender; //<----------
    
        for (i = sender.fxCols; i < columns.length; i++) {
            columns[i].rdonly=me.isCheckbox; //<----------
            columns[i].align = 'center';
            columns[i].renderer = function(value, a) {
                return ((me.isCheckbox) ? "<input type='checkbox'" + ((value == '1') ? "checked='checked'" : "") + " onclick='"+sender.nm+"._check(+this.checked, "+a.rowIndex+", "+a.columnIndex+")'>" : value); //<----------
            };
        }    
    }
    
  8. Part one was the checkbox filed inside UniStringgrid.

     

    Now if you see in the image bellow i would like to activate - shows the checkbox fields only if radiobutton 3 or 4 are checked ( there are 4 chechboxes above the grid on the image, Min Stay, Max Stay, CTA, CTD)

     

    test.jpg

×
×
  • Create New...