Jump to content

M.Ammar

uniGUI Subscriber
  • Posts

    191
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by M.Ammar

  1. Hi Try setting focus onClick UniEdit.JSInterface.JSCall('focus', []); regards
  2. Hi I am wondering if I could use UniMap to achieve result like the picture below in my uniGui Application or it needs to be a native mobile application to do so? the whole plan is inserted in google maps in the exact empty location you can zoom in and select one part and make some action on each part regards
  3. @Mehmet Emin thanks for your help, that was the reason for the issue, now working fine regards
  4. yes each is renamed to application name means rename hyperserver >> App1.dll and App2.dll also cnfg files same if you tried please let me know the result i am running one on hyper server with no issue regards
  5. I have tested now the 4 case and you are correct 4- app1.exe IIS with HyperServer.dll / app2.dll UNIGUI_ISAPI with IIS no hyperserver >> no interfere the problem is defiantly regarding 2 hyperserver running on the same IIS server anyone else have this setup faced smiler issue? or just me? regards
  6. Thank you for reply I have tested 3 cases 1- app1.exe IIS with HyperServer.dll / app2.exe Stand Alone >> No interfere 2- app1.exe IIS with HyperServer.dll / app2.exe Stand Alone with hyperserver.exe >> interfere 3- app1.exe IIS with HyperServer.dll / app2.exe IIS - hyperserver.dll >> interfere I am not sure if the problem from IIS Setup or Hyperserver config but I think it is the first because hyperserver config has nothing to it except binary_name and port no regards
  7. hi, I created a new website on IIS with separate Application pool, stopped all stand alone application I have now 2 websites each have different application pools 2 different domain names 2 different folder 2 different application ports I still have the interference issue with the 2 application, it is now less occurring but it is happening on both domain names any help will be appreciated regards
  8. Hi I have a problem deploying 2 application on the same server, first application is deployed on IIS with hyperserver as App1.dll configuration is set to port 8088 with correct binary_name=App1.exe (Working Fine) 2nd application if I deploy as a stand alone (in another folder) set to port 8099 I can access with no issue (Working Fine), But if I deploy as stand alone with hyper_server.exe with correct binary_name=App2.exe the 2 application interfere with each other and open one of them randomly as in attached video what did I do wrong? 2 applecation .mp4 Best Regards
  9. hi Sherzod I appreciate your effort to help me, I have trayed to put the script in the main form as well as on my form but but I couldn't get it to work, I get error jumpTo is not defined _rsov_(O3DE,2);$(document).unmark({ done: function() { $(document).mark("1", {caseSensitive: true, accuracy: "exactly", done: function(){$results = $(document).find("mark"); currentIndex = 0; jumpTo(); } }); }}); ----- instead I made a deferent solution using database search to find the panel name here is the code if anyone interested QuotedStr := '''%' + UniESearch.Text + '%'''; FDQUnits.Filter := 'unit_name_2 Like ' + QuotedStr ; if FDQUnits.FindFirst then begin UnitPanelBase := UnitTablePanel.FindChildControl('UnitPanelBase_' + (FDQUnitsUnitUnkId.AsString)) as TUniContainerPanel; UnitPanelBase.JSInterface.JSCode('document.getElementById('#1'.id).scrollIntoView(false);'); end; the last line is from another post by you also, working fine thanks again
  10. yes please , if it is possible
  11. thanks for reply it working great thanks, one missing behavior thought , if the found text not in the displayed area need to auto scroll the base panel to display it. best regards
  12. Hi Sherzod I need similar solution to find text on the entire page (UniGuiForm) not UniHTMLMemo1 , the form have hundreds of uniPanels Each have one label (need the same exact behavior as a browser find). can I use this . regards
  13. Layout=absolute means no layout applied so LayoutAttributes.Algin=middle LayoutAttributes.Pack=center has no effect try Layout = vbox
  14. Thank You for your reply and ramadan kareem. I am actually using similar idea by defining one integer field on company (one record) table and checking that for changes, will the sequence be much faster? I am also thinking of dividing the data on 3 or more queries to use 3 or more -one column unidbGrids- side by side is this a good solution? regards
  15. Hi, it is not the best solution but I had to do this for only one form in my application, it will be difficult if you have to do this for all other forms : I have created a LocalResize in the form and then call it on main form screen resize; procedure TMainForm.UniFormScreenResize(Sender: TObject; AWidth, AHeight: Integer); begin if Assigned(LfraHomeDashBoard) then LfraHomeDashBoard.LocalResize(AWidth, AHeight); end;
  16. Hi All, I have to create a Live dashboard to view the statues of about 300 to 600 records at the same time they represent pieces of land, I only have to show the name and a color to represent status (Booked , Sold.. etc.) , I have created similar before (find in picture below) but it is very slow to handle 300 records , I thought of using uniDBgrid , but it will have one column only (Name) and will not use all the rest of the screen. my 2nd issue is what is the best way to keep this view up-to-date for all users, is there any other way than refreshing the query every sec? I use Firdac with SQL server, I have tried FDEventAlerter1 before to detect updates but it did not work with uniGui, worked only with VCL application any ideas or suggestions will be appreciated regards ammar
  17. hi If for IIS you can use URL Rewrite to do it first you have to download it and install it on your IIS Server, It is an extension from Microsoft for IIS https://www.iis.net/downloads/microsoft/url-rewrite you can find many videos on how to use it or flow these steps https://www.namecheap.com/support/knowledgebase/article.aspx/9953/38/iis-redirect-http-to-https regards
  18. I edited the demo to RTL right triggers alignment issue in UniDBNumberEdit is clear compared to UniDBEdit . extra space with font awesome 5 could not reproduce in demo I will keep looking in my project for the couse. best regards 598474997_UniEdit-Triggers(ButtonEdit).rar
  19. I tested Alignment to right issue with 4 themes neptune triton uni_emerald uni_lavender_triton all have the same the extra space the right issue was due to using font awesome 5 icon , it was fixed when I Used font awesome 4 icon. regards
  20. I have another issue with the same, in RTL all other component triggers are all aligned to the left except UniDBNumberEdit is to the right and have extra space to the right. I also want to hide the original trigger (the arrows) if possible regards
  21. NVM My mistake I did not select image in my project, but i don't know why the demo did the same it is working now thanks
  22. yes.. i even coped UniDBEdit in the - Triggers (ButtonEdit) demo and used replace component to make sure i am not doing any thing wrong but same result
  23. Hi I see Triggers in TUniDBNumberEdit but not working, is it not done yet? regards
  24. Hi if I understand you correctly you need the same grid settings and operations for many forms, I know this is simple solution but have you considered inheritance? I mean one form as parent with some generic code for sorting and filtering etc.. , I use the same in my projects and it saves a lot of time only have to deal with some exceptions . regards
×
×
  • Create New...