Jump to content

FFREDIANELLI

uniGUI Subscriber
  • Posts

    203
  • Joined

  • Last visited

Everything posted by FFREDIANELLI

  1. Hi , some evolution on this ? my time to deliver the application is finishing...
  2. Hi, Please see this test case. In this \FMSoft\Framework\uniGUI\Demos\Desktop\HTMLFrame demo there is no chart been generated with 'afterscript', if i put other text on top of it the text is show, so the html is refreshed, but the afterscript is not updated...and the chart return white like MarBar77 or im losting some point on all this chart generation process...
  3. Please Farshad or Sherzod the htmlframe without possibility to refresh is useless... do i have to asK to the user to close the application to refresh the html ? This is not possible...
  4. Thanks for any help ! funnel.rar
  5. Please how to change the values of the chart and update the htmlframe ? I whant to navigate in a montly grid and update the chart... i changed the content of afterscript and call htmlframe.refresh, but with no effect... onbuttonclick.... unihtmlframe1.AfterScript.Clear; unihtmlframe1.afterscript.add('$(document).ready(function()'); unihtmlframe1.afterscript.add('{'); unihtmlframe1.afterscript.add('showfunnel();'); unihtmlframe1.afterscript.add('});'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('function showfunnel()'); unihtmlframe1.afterscript.add('{'); unihtmlframe1.afterscript.add('var data ='); unihtmlframe1.afterscript.add('['); unihtmlframe1.afterscript.add('[''1'', 5000000],'); unihtmlframe1.afterscript.add('[''2'', 2500000],'); unihtmlframe1.afterscript.add('[''3'', 1000000],'); unihtmlframe1.afterscript.add('[''4'', 500000],'); unihtmlframe1.afterscript.add('[''5'', 400000],'); unihtmlframe1.afterscript.add('[''6'', 300000],'); unihtmlframe1.afterscript.add('[''7'', 200000],'); unihtmlframe1.afterscript.add('[''8'', 100000]'); unihtmlframe1.afterscript.add('];'); unihtmlframe1.afterscript.add('var options ='); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('{'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('chart: {'); unihtmlframe1.afterscript.add('animate:300,'); unihtmlframe1.afterscript.add('bottomPinch:1,'); unihtmlframe1.afterscript.add('curve:'); unihtmlframe1.afterscript.add('{'); unihtmlframe1.afterscript.add('enabled: false,'); unihtmlframe1.afterscript.add('height:35,'); unihtmlframe1.afterscript.add('}'); unihtmlframe1.afterscript.add('},'); unihtmlframe1.afterscript.add('label: {'); unihtmlframe1.afterscript.add('format: ''{l}: {f}'','); unihtmlframe1.afterscript.add('},'); unihtmlframe1.afterscript.add('tooltip: {'); unihtmlframe1.afterscript.add('enabled: true,'); unihtmlframe1.afterscript.add('},'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('block: {'); unihtmlframe1.afterscript.add('dynamicHeight: true,'); unihtmlframe1.afterscript.add('minHeight: 35,'); unihtmlframe1.afterscript.add('hoverEffects: true,'); unihtmlframe1.afterscript.add('highlight: true,'); unihtmlframe1.afterscript.add('fill:'); unihtmlframe1.afterscript.add('{'); unihtmlframe1.afterscript.add('type: ''gradient'','); unihtmlframe1.afterscript.add('}'); unihtmlframe1.afterscript.add('},'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('};'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('var chart = new D3Funnel(''#funnel'');'); unihtmlframe1.afterscript.add('chart.draw(data, options);'); unihtmlframe1.afterscript.add(''); unihtmlframe1.afterscript.add('}'); unihtmlframe1.Refresh;
  6. Do you discover the problem ? i need to create similiar charts...
  7. Forget it ! i find where to put... inside the debug folder ! thanks again !!!
  8. Sherzod, thanks again, but can you put your test file, the mine is not working, something is not right, may be the folders where i have to put this files, or the command in the apply button ? put a refresh...
  9. my is white... , may you post here your application test with the files that you used ? i downloaded the version 4.13 , renamed the file d3.js to d3.v4.js and put in a subdirectory of project1 directory with the name /files but nothing works... sorry...
  10. Thanks for the answer, what do i have to put in apply button ? the files directory is inside the project directory ? in case of idapi do i have to put the files in some special directory ? or create a directory just for this application ?
  11. Hi ! , someone have a clue to how to use opensource funnel javascript chart with unigui ? i need to create a Funnel chart but my knowledge in javascritp is zero... Help please...
  12. Wich other property do I have to set to ChangeDelay work in dbgrid filter ? I changed the column filter changedelay from 250 to 4000 (because i need on an slow android tabled ), but nothing change... If I change on demo filter , it works, so may be some other property to change ? Thanks for any help.
  13. Hi, i use version 1481, but in my demo directory ( touch ) i don' have the souces of the all charts that are available to see in devo of unigui.com site, were i find it ?
  14. Something changed in the version 1481, the mobile dbgrid until version 1480 show the text of memo filed , now show (MEMO). The same source Do i have to change some new property ?
  15. Sorry if its not a beatifull solution , but the commercial schedule that i use in my photographic studio just fill all the weekends dates or not available hours with a reserved event in the database of scheduled tasks... so nobudy will be able to reserve this hours because they are reserved to me...
  16. Some help please... I need to access a pdf file that is in a network server, i created an alias in apache, i can access from the browser the file needed it open ok , to test in unigui i changed the unigui demo pdf procedure TMainmForm.UnimBitBtn3Click(Sender: TObject); var form_pdf: Twndpdf_test; begin if UnimList1.ItemIndex >= 0 then begin form_pdf := Twndpdf_test.Create(UniApplication); // form_pdf.PDfFile := 'pdfs/' + UnimList1.Text; <-----changed to form_pdf.PDfFile := 'https://servidor.pmfezer.com.br/yyy/xxxxx.pdf'; <---- this form_pdf.Show; end; end; but unigui put the server name in front how to remove this http://localhost... just for the moment of opening this pdf, because all the others files he need to continue saving on /files... Thanks in advance for any help provided.
  17. Yesssss..... it works !! I think that an example like that should be in the demo, in mobile is it fundamental to get around the lack of space ,Think about ... Farshad and Sherzod. Thanks for the always present support !!!
  18. This link explain my problem https://www.sencha.com/forum/showthread.php?273541-Fieldset-is-cutted-of-No-scrolling-possible but I do not undestend the solution...
  19. It's easy to understand, like a dbmemo, the scrollbars appear if needed, seems that fieldsets have this too, but i do not know how to enable. Please help me to translate how to change this to work in unigui...
  20. i tryed to put fieldset inside a scrollbox , to be able to put more fields in the mobile, but it not show the scroll bars. Serching on google in sencha sas that fieldsets have a property autoscroll but i do not find in unigui.
  21. Is it possible to autoscroll a fieldset ?
  22. Ok... after 2 hours, yes... im new on this... i discovered the problem, my dbgrid is readonly and for some mistake i set 'enable' in dbgrid to false, this have no effect on the grid, it still working normaly navigation , normal , paging... etc... But ! do not move the cursor of the table , move on the client side, problably.. visualy but the server side not moved... so the others dbcomponents on others tabs do not show any movement... Enable it againt and Voilá ! I do not see this first because the disabled grid do not change color like in VCL, buy desing ?
  23. I have a tdatasource with a grid on first tab and others details dbcontrols on others tab pages, changing the selected record on dbgrid do not update the dbcontols of the others tab pages, how to force this update on change of tab page ? I tryed .repaint , .refresh... without success... any help will be greatly appreciated...
×
×
  • Create New...