Jump to content

jahlxx

uniGUI Subscriber
  • Posts

    1241
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by jahlxx

  1. Hi friends. When I generate / compile / build / deploy a sample apache module project, for win32 and linux platforms, allways generates a dll file, not a .so file. I build with no errors. And deploy to linux server, and in the scratch directory allways generates a dll, never a .so file. Someone can help me? This is new for me (linux project), ans sure I'm forgetting some step. I've followed unigui manual, and reviewed this: https://chapmanworld.com/2016/12/29/configure-delphi-and-redhat-or-ubuntu-for-linux-development/ Please, some help. My dev environment is Delphi 10.3.3, Unigui version 1.90.0.1539, and the linux server is Debian 10. Thanks.
  2. jahlxx

    sencha theme

    no, try with sencha theme. neptune works fine.
  3. jahlxx

    sencha theme

    ok. all removed. attached is sample. AllFeaturesDemo.zip
  4. jahlxx

    sencha theme

    sorry. can you clarify?
  5. jahlxx

    sencha theme

    Just take "all features demo" and left blank images property of navtree.
  6. jahlxx

    sencha theme

    Hi. With uni_sencha theme, in treeviews, when an opcion has sub-options, no icon is shown. why? this not happens in other themes. Thanks.
  7. In run time, I need to do something like this: button .style := tbsButton; or button .style := TUniToolButtonStyle(tbsButton);
  8. Hi. Is possible to change TUniToolButton Style in run time? Thanks.
  9. Can I do something similar to gridsummary sample but when grid is paged? doing this with calctotals, it takes many time. Thanks.
  10. Ok. The solution is gridsummary, but the problem in when the grid is paged. In this case, gridsummarypaged is bad solution when the grid have many rows and call calctotals when the grid is loaded.
  11. Hi all. Is possible to have an auto summary row in dbgrid? Could be useful to have an option to autocalc summary row for every numeric column in a dbgrid. Any idea? Thanks.
  12. jahlxx

    checkcombobox

    Hi. In a checkcombobox, how can I check / uncheck an item by code? And check all and/or uncheck all? Thaks.
  13. Version 1.90.0.1539 I saw your example, and I think that the problem is that you have defined columns ai design time, and I define columns in run-time. That's the problem. In thar case, the counter fails.
  14. Well, perhaps. I think I understand, but could be wrong. As I know, the checkboxes are to hide show columns in the grid. And as I can see, if I hide a column, the columncount returns a different vale. And fom my point of view, the columncount should not change. The count of columns should be the same, because I have 9 visible columns and 1 hidden column, 10 columns in total, not 9.
  15. ups. sorry!! can you clarify? thanhs.
  16. well, there is no code for this. I hide the column with this, check or uncheck in the columns, to hide and/or show: before uncheck column count is 10, and after uncheck one, the column is hidden and the column count is 9.
  17. Hi. When I hide a column in a dbgrid, the column count I think is not correct. If I have 10 columns, column count is 10. but if I hide one column, the column count is 9. This could be ok or not, depending the point of view of every one. Is there any option to get the real number of columns including the hidden columns? Thanks.
  18. Hi. How can I change some things in excel exporter? I need to change font / color/ alignmnet of title and column titles. I also need to export formatted numbers. Thanks.
  19. jahlxx

    pivotgrid style

    Hi. How can I change some things related to pivotgrid style? font, fonnt size, font color, etc. The font property seems that is not working. Thanks.
  20. jahlxx

    pivotgrid

    Hi. As I can see, a column for topaxis is needed, isn't it? Thanks.
  21. jahlxx

    pivotgrid

    Hi. First of all, sorry for this, is possible that this is answered in some previous topic. I'm new with pivotgrid and can't gert what I am looking for, an the sample doesn't helps me. I have this query: select banco, producto, referencia, sum(importe1) pb_saldo, sum(importe2) pb_prestamo, sum(importe3) pb_limldesc, sum(importe4) pb_displdesc, sum(importe5) pb_limlcred, sum(importe6) pb_displcred from ( select a.des_banco as banco, des_pf as producto, referencia, (case when a.cod_pf = 0 then a.importe else 0 end) as importe1, (case when a.cod_pf = 2 then a.importe else 0 end) as importe2, (case when a.cod_pf = 1 then a.limite else 0 end) as importe3, (case when a.cod_pf = 1 then a.importe else 0 end) as importe4, (case when a.cod_pf = 7 then a.limite else 0 end) as importe5, (case when a.cod_pf = 7 then a.importe else 0 end) as importe6 from tabla a where a.comp = :c1 ) x group by banco, producto, referencia order by 1 And need to build a pivotgrid. I fill the leftaxis property, with banco, producto and referencia, and is shown ok. My problem is that I don't know how to show the other fields as columns. I've tried with topaxis, aggregators, and drilldows columns, with no success. I've tried some combinations, but can't get it. Maybe this is a stupid mistake, or something I'm doing wrong, sure due to my ignorance. Some help please. Thanks.
×
×
  • Create New...