Jump to content

JarekZ

uniGUI Subscriber
  • Posts

    44
  • Joined

  • Last visited

Everything posted by JarekZ

  1. Hello Will UniGui be further developed?? RoadMap ended in 2021. I have a few new projects planned and I don't know whether to stay with UniGUI or look for an alternative.
  2. it means you're trying wrong. ajaxrequest works. you are probably setting the "recipient" of the message wrong. Post a piece of code where ajaxrequest doesn't work for you
  3. I am attaching the project. I apologize for its quality but I wrote at lunch;) you need to set up a database in MSSQL, set up a table and create a procedure. There is table.sql for that Connecting to the database in the config.ini file I have a test database with about 10 million records, I can send it. Mormot v1.18 is required for json support DemoUni.zip
  4. the basis is a procedure in the database simple example for MSSQL: create procedure Orders.Listaproduktow (@userid int, @ startindex int, @ countindex int, @ filter varchar (50)) as begin Select * from Orders.products where name like @filter offset @startindec rows fetch next @countindex rows only; end Support for the @startindex variable in the application - increases or decreases by @countindex Bootstrap - added Ajax support which returns which page it wants to display. the example of the procedure is trivial but it is the key to speed. Well indexed table, proper SQL query, and it works very well. Of course, if you set @countindex to 100000, it doesn't make sense. I have @countindex set from 50 to 200
  5. Hello I solved it on the SQL server side. Procedures return only the data package that is to be displayed. DBGRID has been replaced with HTMLFrame + bootstrap-table. The size of the tables is about 30 million records. it works very well in my applications.
  6. JarekZ

    UniFileUpload

    how to resize UniFileUpload ??. For more files, the file names cannot be seen
  7. JarekZ

    js and htmframe

    ajaxRequest not returned value to function in JS
  8. JarekZ

    js and htmframe

    Example loads the HTML file into unihtmlframe on button onclick adds a function that has to return JSON based on data from the database and display it in alert () JSON is created e.g. by ADOQuery
  9. JarekZ

    js and htmframe

    hello I'm using unihtmlframe on which I have a button. The button starts a JS function. How to make this function retrieve data from another function in the application ??
  10. <video autoplay muted loop id="myVideo" > <source src="files/video/my.mp4" type="video/mp4" /> </video> this works in unihtmlframe and uniurlframe
  11. font color of course
  12. in CSS ._menugrupytwr .x-treelist-row-over, ._menugrupytwr .x-treelist-nav .x-treelist-item-selected > .x-treelist-row{ background-color: rgb(50,64,78) !important; } ._menugrupytwr .x-treelist-item-text, ._menugrupytwr .x-treelist-item-icon, ._menugrupytwr .x-treelist-item-expander { color: black; font-size: 12px; font-family: helvetica, arial, verdana, sans-serif; } ._menugrupytwr .x-treelist-nav .x-treelist-item-text { line-height: 20px; font-size:12px; font-family: helvetica, arial, verdana, sans-serif; } ._menugrupytwr .x-treelist-nav .x-treelist-item-icon:before,._menugrupytwr .x-treelist-nav .x-treelist-item-tool:before,._menugrupytwr .x-treelist-nav .x-treelist-item-expander { line-height: 20px; font-size:12px; font-family: helvetica, arial, verdana, sans-serif; }
  13. I changed backgroud color and font color but selected item is black And I wanted it to be gray or white
  14. Hello How to change the text color of the marked item in the unitreemenu?
  15. JarekZ

    focus

    hello how to set focus in unihtmlframe on the field <input id = "aaa" type = "numeric" />
  16. this is a simpler question: how to handle the onkeydown event on unihtmlframe placed on uniframe?
  17. uniMain-> uniFrame-> unihtmlframe I press the down arrow key and I want the unihtmlframe content to move down
  18. Hello how to solve scroll in unihtmlframe after pressing the down arrow key? OnKeyDown works on a uniform but how do you pass it to unihtmlframe ??
  19. JarekZ

    multi css

    sorry, I chooce company in main. Then I create new form.
  20. JarekZ

    multi css

    in the mainmodule I choose a company. Then I create a form. When creating the form, I wanted to load css. OnCreateform does not work
  21. JarekZ

    multi css

    Hello I am writing an application for several companies. Loads css files in servermodule (as customfiles) The problem is that each of the companies wants to have slightly different colors etc. How to do it best ??
  22. JarekZ

    clientside align

    then how to make image always left and label always right, even when the browser size is changed?
  23. hello I have a container panel at the FORM - align=alTop and uniAlignmentClient In Containerpanel uniimage align=alLeft and unilabel align=alRight when launched in a browser uniimage ok in left but unilabel not left container how should the properties of the components be?
×
×
  • Create New...