Jump to content

zemorango

uniGUI Subscriber
  • Posts

    99
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zemorango

  1. Hi Delphi Developer, The version I'm using is 1424. And yes I'm going to make a simple sample case, I will posted as soon as possible. Regards zemorango
  2. I Unigui Developers, I Have a strange situation, I have a form with some butons and a unidbgrid. for each of the buttons I fill the grid with data from a table in sql server and aply filters to the grid according to the columns of the table i choose. the filters apears and work for the first tabble and second table, the grid is filled correctly and the filters works, but if I click on the first button again to load back the date form the first table then I get an error. Before I fill the grid I clear all the columns and set the filter component of each columns to nil; I'm sending some imagens in attachement // make sure to remove the filter components from the grid columns for i := 0 to JanListagens.GridRelatorio.Columns.Count-1 do begin JanListagens.GridRelatorio.Columns[i].Filtering.Editor:=nil; end; // clear the columns JanListagens.GridRelatorio.Columns.Clear; // load the grid with dataset the SQL is diferent with more or less colums depending of the table i'm loading GetData(self, JanListagens.Provtmp, JanListagens.CDStmp,sql, JanListagens.GridRelatorio, JanListagens.Dtstmp); // configure the filters, all uniedit simple text. for i := 0 to JanListagens.GridRelatorio.Columns.Count-1 do begin if (JanListagens.GridRelatorio.Columns[i].Field <> Nil) then begin Comp:=JanListagens.findcomponent('Edit_'+UniMainModule.listActualTabela.ToString+'_'+i.ToString) as TuniEdit ; if Comp<>nil then begin comp.EmptyText:=JanListagens.GridRelatorio.Columns[i].FieldName+'...'; JanListagens.GridRelatorio.Columns[i].Width:=200; JanListagens.GridRelatorio.Columns[i].Filtering.enabled:=true; JanListagens.GridRelatorio.Columns[i].Filtering.Editor:=comp; JanListagens.GridRelatorio.Columns[i].Title.Font.Size:=9; JanListagens.GridRelatorio.Columns[i].Sortable:=true; end; end; end; do I need to make some kind of cache operation to clean the filters in javascript? Regards zemorango
  3. Hi Gerhard, Any news , please... Regards Jose
  4. Great Job! Really nice work, where do I donate
  5. Hi, I've have build some theme using the Sencha themer tools for ext 6.5, I now would like to use those themes in unigui, what do I need to do to use them in my unigui apps? Regards Zé Morango
  6. Idb68, Nice work, is this all unigui standard components or do you have html frames?
  7. how did you solve this problem? I don't understand what you have done.
  8. Hi, Sorry for sure I'm doing something wrong but I can get stringgrid to create or change columns at run time. MyStringGrid.Columns.Add; MyStringGrid.Columns[0].Title.Caption:='MyCaption'; Nothing changes, anyone have some clue on this? Regards zemorango
  9. Hi Mohammad, Regarding your example, how do I change the unicalendar colors of a date cell at runtime, I used you code to create the colors styles but how to make a specific date have one of those colors? Regards Jose
  10. Hi Lema, Yes I can, I send you a link, its a simple project https://1drv.ms/u/s!Armx7bQj2c-RiNodsEppJqJX-HktXQ also I have some problems running project as ISAP dll published to IIS, even in 32 bits I get a white screen instead of the map, I tested you demo project and have the same problem I sent you some pictures in the links below https://1drv.ms/i/s!Armx7bQj2c-RiNob_Zo6gft6UK-CBA https://1drv.ms/i/s!Armx7bQj2c-RiNoc4_Dw7spMS3ze3g
  11. Hi Lema, when I Compile my projects to 64 bits the UniGmap only shows a white screen. it runs well on 32 bits but I really need to compile to 64 bits. I'm using Delphi Berlin update 1 and unigui version
  12. Ok thank Delphi Developer I already sent it , Regards
  13. Hi, Today I remove Hyper-V from my PC and after restart when I start Delphi Berlin I get the error "unigui:Verication Failed", so I'm trying to reinstall but cannot remember my customer Portal Pass to get the last version., How do I do to reset the password? Regards José
  14. I final got it working 1- I just just remove everything, 2 - remove the bpl's from embarcadero bpl folder, 3 - Restart computer. 4 - Re-install unigui and it's working. Anyway, I still don't know why this has hapened, I hope this problem will not happen again. Thanks
  15. Thank davor242, It is my development machine, I already reinstall unigui, the problem still here. Don't know what to do anymore
  16. Hi, Farshad So far everything was ok, I'm developing a new unigui web app and I like it so mush, I'm using Delphi berlin update 2. But today when o run the app and open the browser ( any browser) the app don't start, all I get is "loading..." I'm, using version 1399 of unigui In the developer console of the browser there is some errors : SCRIPT5009 : ' Ext' is undefined localhost:8077 (18,2) SCRIPT5009: 'uniVars' is undefined I thought it was some error in my app so i create a new one empty only the default form, but the problem is the same. I send a log server in attach Any Idear? thanks in advance. zemorango A2017-09-02.txt
  17. To login to a sql server never use the SA user, create a user that can work in the database you want to use, login with SA user is a big security issue.
  18. Work great , Thanks Delphi Developer,
  19. Hi guys, In the sample project of unigui at "Demos\Desktop\Clientside Alignment - Layout Hbox" i want to remove the margin or padding, how can I do it. Please see attached image
  20. Hi everyone, Please check this good prices at http://www.ovh.com/us/public-cloud/instances/prices
  21. Ext Js 6.5 support with responsive design would turn unigui the state of the art for web development.
×
×
  • Create New...