Jump to content

jahlxx

uniGUI Subscriber
  • Posts

    1241
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by jahlxx

  1. Hi. In an htmlframe, I load an html file that contains an html form. All is OK, and correctly shown, but when I press Tab key, the focus don't move between html form elements, it moves between unigui elements. How can I solve this? Thanks.
  2. Hi. I get similar error, randomly in UniDBgrid. ("Could not set cell position: row: [0], column:[0] :a is null") Any idea? Thanks.
  3. Ok. I'll try. Thanks.
  4. Hi all. In applications, in servermodule, in beforeinit procedure, I load some custom css. I have hybrid application. Is there any way to detect the device from I am calling the application, and if it is a mobile device con't load that css? Thanks.
  5. jahlxx

    geolocalization

    Of course. Done with touch components. I 've followed these steps: 1.- In a unimform, put 2 unimedits (xlat, xlon), and a unimbutton (disabled). 2. In the onshow event of the form, this code: xlat.text := 'x'; xlon.text := 'x'; uniSession.addJS ( 'if ("geolocation" in navigator) {' + ' var watchID = navigator.geolocation.watchPosition(' + ' function(position) {' + xlat.JSName+'.setValue(position.coords.latitude);' + xlon.JSName+'.setValue(position.coords.longitude);' + ' }' + ');' + '} else {' + xlat.JSName+'.setValue("x");' + xlon.JSName+'.setValue("x");' + '}' ); 4. This ask the user to allow the app to access the location. (tested in android and an iOS cell phones) (I think that as Sherzod said in a post before, this depends of the browser, not the device). 5. If the user accept, then after a few seconds, latitude and longitude appear in the unimedits (xlat and xlon). If not, the values remains set to 'x'. 6. Give some code, to the xlat (or xlon) edit onchange event. What value is not 'x', then the button is enabled, and do what you want in the onclick event. When enabled, meand that device could be geolocated. Value 'x' means that geolocation is not done, due to the user denied the permission, and/or technical issues that didn't the browser to be able to locate the device. In my case, is mandatory to be geolocated. If not, the service will be unavailable for the user. That's all.
  6. jahlxx

    geolocalization

    Ok friends. Thanks to all. Everything works perfect. Tested in android and ios devices with success. Thanks.
  7. jahlxx

    geolocalization

    Ok. Thanks friend. Everything works perfect. I have tested in android cell phone. Should this work in iPhone too?
  8. Hi. In Ext JS Event of a UnimButton, I have this: function tap(sender, e, eOpts) { MainmForm.xedit.setText('Clicked !!'); } It seems to do nothing. But, if I do this: function tap(sender, e, eOpts) { alert ("clicked!!"); } Works OK. All of this, with UniGUI desktop application, works, but no in mobile. Someone knows where is the problem? I need to write to xedit (it is s tunimedit). Thanks in advance.
  9. jahlxx

    geolocalization

    WOW. Thanks friend. I almost got it. With your code, raises this compile errors; [dcc32 Error] Main.pas(70): E2003 Undeclared identifier: ' MyDataLabel' [dcc32 Error] Main.pas(70): E2029 ')' expected but identifier 'JSId ' found If I try other code based in yours: uniSession.addJS ( 'if ("geolocation" in navigator) {' + ' var watchID = navigator.geolocation.watchPosition(' + ' function(position) {' + ' alert ("geolocation IS available "+ "lat:" + position.coords.latitude + ", long:" + position.coords.longitude);' + ' }' + ');' + '} else {' + ' alert ("geolocation IS NOT available");' + '}' ); This works, but have 2 problems: 1) I don't know how to return lat ans long to 2 variables (delphi variables) 2) The call to that JS is called permanently until close the browser or the browser page where is running. Any idea?
  10. jahlxx

    geolocalization

    Ok friend. I'll test. Do you have a full example to help me? (in delphi) Thanks.
  11. jahlxx

    geolocalization

    Hi. This works perfect, thanks. The only problem is that the location is not OK. For example it give my location in other city near me. For the purpose I'm working, I need more accuracy. Is possible activate the GPS in the cell phone from a unigui mobile application? I need the exact location (or as near as possible) of the user for some operations. Some mobile applications, raise a message in the cell phone asking for activate the GPS, and if its not activated, the the option dosen't works. Is there any way to do this? Thanks.
  12. jahlxx

    geolocalization

    Thanks. I'll try. But this used to work in the past. I don't know since when this doesn't works. Is very suspicious that typing the url in the browser works, but don't work from application.
  13. jahlxx

    geolocalization

    Hi all. I have this function (is an example): function Tlib.GetGeoInfo2(const IpAddress: string): string; var get_url: string; lHTTP: TIdHTTP; sURL: string; xgeoloc: string; begin lHTTP := TIdHTTP.Create(nil); sURL := 'http://api.ipinfodb.com/v3/ip-city/?key=bf37c2d7fffa57c8a0dd1260bdfe5dcaf587b250562ea1f768b5cc4eb3f55b99&ip=188.85.82.223'; //get_url := Format(sURL, [IpAddress]); xgeoloc := ''; try xgeoloc := lHTTP.Get(sURL); finally lHTTP.free; end; GetGeoInfo2 := xgeoloc; end; In I run this, returns HTTP/1.1 403 Forbidden, but, If I copy the url, and paste directly in a browser, works perfect. Please, can someone give me some help? Thanks.
  14. Ok. Take the demo: \FMSoft\Framework\uniGUI\Demos\Desktop\DBLookupComboBox - Custom Remote Query Add a button in mainform, and in onclick event: UniDBLookupComboBox1.keyvalue:='10001'; This does nothing.
  15. Yes. Thanks. The only problem is for example, unidblookupcombobos.keyvalue := 29, don't work.
  16. Hi. Is possible in a dblookupcombobox set any opcion to match some fields. Now, as I know, match any field = true or false, and match all fields. I need to match only some fields. Is possible? Thanks.
  17. Hi. How can I change colors for buttons in unifileupload? Thanks.
  18. Hi. I need to know the class of TUnimForm, TUnimTabPanel, and TUnimTabSheet. Or, are there any tool or way to know it? Thanks.
  19. Sorry, solved with Unimscrollbox. But, executting on my cell phone, the scrollbox doesn't fill the screen. A blank space is shown at bottom. Works, but is extrange behaviour. Am I missing something? Thanks.
  20. Ok. I'll try. Thanks
  21. In touch demos, see Form scrollable
×
×
  • Create New...