Jump to content

Rafael P

uniGUI Subscriber
  • Posts

    88
  • Joined

  • Last visited

Everything posted by Rafael P

  1. Opa amigo, então eu havia adicionado o link mas apaguei depois da resposta dele. É pra colocar esse script após o confirm do botão, só que não faço ideia de como colocá-lo porque é de uma ferramenta de analytics de marketing do Google. Nos foi dado durante uma reunião e chegou até mim somente dessa forma. Então não sei se isso é realmente possível.
  2. We had a online meeting with some people from Marketing of Google, and that was all they said. There is no documentation on how it should be done, it was just said during the conversation
  3. It's from Google Tag. We have to put on Click Button event, so the script can capture. Any ideas? Sorry to bother you, anyway, thanks!
  4. I think i will need to specify more details from my project. First, this script was provided by Google and all he have to do is capture many of people who access our website and register on it, so he can help us to know where we can put our efforts in publicity, gain access, etc... it's a Marketing tool. And the instructions is telling us to put this script right after user click on register or confirm button. But i can't see a easy way to implement this... it was supposed to be something trivial but it wasn't until now...
  5. Hi Sherzod! So, i saved the js script file inside my deploy achieves from my project: Deploy/Application/JS/Google_script.js and submitted on ServerModule -> CustomFiles. Now i want to call this file when a button on my application is clicked. Thank you!
  6. Hi everyone! I just made a file using JS Script and added on ServerModule and saved the file inside my project. How can i call this file on my application in OnClick Event in a button? For example, this function has to be activated when a button is clicked. I already tried UniSession.AddJS(), but unfortunately was unsuccessfully.
  7. Thank you so much, still have to do some adjustments, but it worked now! Sorry for any misunderstandings...
  8. Currently using version 1.90.0.1549
  9. Simple display a message to "data is loading" once he clicked
  10. Nope. I mean, i want to display a message on UnimDbListGrid when click on OnClick Event. By default, there's no Propertie like on UnimDbGrid (LoadMask).
  11. Simillar to LoadMask on DBGrid, i want to display a message for "data is loading" into OnClick Event to show a user that data is loading when clicked on mobile in UnimDbListGrid...
  12. Hello everyone! i'm searching for a property on UnimDbListGrid to input a mask for display a message for "data is loading" when OnClick Event is triggered but i don't find anything that could be useful here. In properties there's no InputMask function like desktop component... Any idea? Thank you so much!
  13. Is there a property or something else that i can block or simple don't allow user to click twice in a button in less than five seconds? I've tried this, but unfortunately doesn't work right: pUltimoClick := Now; if SecondsBetween(pUltimoClick, Now) < 5 then Exit;
  14. And how can i get values from multiple checkboxes selected in a dbgrid and display in a ShowMessage, for example?
  15. Hi everyone! Is there any solution to hide parameters like 'xxx.DLL' in mobile navigation on uniGUI? I mean, everytime we start the application on mobile he loads the main site and his .DLL. I want to hide all captions after '.com', including the 'ABCDEF.DLL' part. In desktop everything looks regular, but as soon we start to use mobile, he show all parameters... P.S: i've already see this link, including the solution from IIS, and doesn't work. Thanks!
  16. Thanks, but apparently there's no solution (yet) for this... Have you tried something?
  17. Hi everyone! Its gonna be difficult to explain this, but i will give a try: We have our template application (landing page) builded in a web app called 'Site 123' and uniGUI have this template deployed inside a container (TUniURLFrame). What happens is already saved this settings in the search engine inside the platform app (Site 123) and we want to achieve the most high access (clicks) into our website, but unfortunately, doesn't work as we think before. Is there any kind of setting to increase the searches of our website inside on uniGUI, so the application can give more 'visibility' to the user who is searching for the specific terms on the internet? Thanks to anyone who can answer this!
  18. I have tried to do this in OnCreate Event, but it didn't work. And unfortunately, DBListGrid on Mobile doesn't have the OnDrawnColumnCell event which will be possible to change the color of the rows using Attributes from the grid (color or font, for example)....
  19. Excuse-me if i asking you 'how to do' other things... But, now i'm trying to change some specifically row from the grid in run-time according to the status. For example, if status = 5 then *change the 7 column of the grid in run time to color red* in this case. Because the color that you're currently see, its just defined in html. So i pretend to change according to the status... There's some event of the grid that i can do this? If Yes, how can i supposed to do? Thanks again!
  20. First of all, thank you for your help. It works, but parcially. I pretend to put some images to display in a grid in under circustances. There's 5 images, but only 2 has appeared to display... Here's my source. Hope you can help me to solve this, i can't find where is the error... - DataSource (OnCalcFields): procedure TDmNFe.SQL_Lista_NFeCalcFields(DataSet: TDataSet); var APath : String; begin if SQL_Lista_NFeid_status.AsInteger = cNFeFaltaEnviar then begin if not DirectoryExists(APath) then begin DataSet.FieldByName('status_mobile').AsString := '/files/f.png'; end; end; if SQL_Lista_NFeid_status.AsInteger = cNFeCancelado then begin if not DirectoryExists(APath) then begin DataSet.FieldByName('status_mobile').AsString := '/files/c.png'; end; end; if SQL_Lista_NFeid_status.AsInteger = cNFeAutorizado then begin if not DirectoryExists(APath) then begin DataSet.FieldByName('status_mobile').AsString := '/files/a.png'; end; end; if SQL_Lista_NFeid_status.AsInteger = cNFeUsoDenegado then begin if not DirectoryExists(APath) then begin DataSet.FieldByName('status_mobile').AsString := '/files/d.png'; end; end; if SQL_Lista_NFeid_status.AsInteger = cNFeContingencia then begin if not DirectoryExists(APath) then begin DataSet.FieldByName('status_mobile').AsString := '/files/co.png'; end; end; end; These images that are marked with a row needed to display a third image (cNFeAutorizado), and unfortunately shows (cNFeFaltaEnviar). - The second image down below is the final result that i want to achieve (Desktop).
×
×
  • Create New...