Jump to content

Sherzod

Moderators
  • Posts

    19636
  • Joined

  • Last visited

  • Days Won

    633

Everything posted by Sherzod

  1. Hi, This post can help you: http://forums.unigui.com/index.php?/topic/6619-native-imagelist/ Best regards,
  2. Hello, Which edition and build are you using ?!
  3. This post can help you: http://forums.unigui.com/index.php?/topic/9184-redirect-http-to-https/
  4. http://www.unigui.com/doc/online_help/configure_unigui_server.htm
  5. For example: google.maps.event.addListener(map, "click", function (event) { var latitude = event.latLng.lat(); var longitude = event.latLng.lng(); var zoom = map.zoom; //alert( zoom + ', ' + latitude + ', ' + longitude ); ajaxRequest(MainmForm.UnimHTMLFrame1, '_LatLong', ['lat='+latitude, 'lng='+longitude, 'zoom='+zoom]); }); procedure TMainmForm.UnimHTMLFrame1AjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin ... if EventName = '_LatLong' then begin ShowMessage(Params.Values['lat']+', '+Params.Values['lng']+', '+Params.Values['zoom']); end; end;
  6. Hi, Please make a simple testcase for this
  7. google.maps.event.addListener(map, "click", function (event) { var latitude = event.latLng.lat(); var longitude = event.latLng.lng(); var zoom = map.zoom; alert( zoom + ', ' + latitude + ', ' + longitude ); });
  8. Hi, Which edition and build are you using ? Best regards,
  9. Have you seen this post also ?: http://forums.unigui.com/index.php?/topic/6712-overflowing-text-grid-cell-tooltip/
  10. Hi, Can you tell in more detail, what you wanted ?
  11. Hi, Yes, it will be available on the server side But, you can try to use this approach for now I think, for example: procedure addNode(NavTree: TUniTreeView; ID: Integer; sText, sAnchor: String); var Nd: TUniTreeNode; Ni: TNodeInfo; begin Ni := TNodeInfo.Create; Ni.ID := ID; Ni.scrollTo := sAnchor; Nd := NavTree.Items.Add(nil, sText); Nd.Data := Ni; with NavTree.JSInterface do begin JSCode(#1'.store.getNodeById('+ IntToStr(TWebTreeNode(Nd).Id) +').data._ID = ' + IntToStr(ID) + ';'); JSCode(#1'.store.getNodeById('+ IntToStr(TWebTreeNode(Nd).Id) +').data._scrollTo = "' + sAnchor + '";'); end; end; function itemclick(sender, record, item, index, e, eOpts) { alert(record.data._ID + ', ' + record.data._scrollTo) }
  12. Hi, Currently user language detection uses browser settings, I'll try to think of something... Best regards,
  13. Hi, For example like this: google.maps.event.addListener(map, "click", function (event) { var latitude = event.latLng.lat(); var longitude = event.latLng.lng(); alert( latitude + ', ' + longitude ); ); Best regards,
  14. Can you make a simple testcase for this?
  15. Hi, You can use UniSession.SSL property for this
  16. Hi, Maybe this post can help you: http://forums.unigui.com/index.php?/topic/9428-how-add-marker-in-map/
  17. Hi, You can use search on the forum, For example this post can help you: http://forums.unigui.com/index.php?/topic/6389-skip-to-the-next-line-in-a-unidbgrid
  18. Hi, How? Can we reproduce this issue?
  19. In this case just try with sender ajaxRequest(sender, 'loaded', [])
  20. Hi, Sorry, can you clarify your question?
  21. Hi, Have you tried to modify the demo for your needs, if this is acceptable for you ? HTMLFrame -> HTML, HTMLFrame -> ClientEvents -> ExtEvents -> afterupdatehtml, rezise, painted events
  22. Hello, UniMainModule -> RecallLastTheme -> True ?
  23. Sorry, seems you meant Label align Ok, try this solution: function beforeInit(sender, config) { config.style = {'text-align':'left'}; }
  24. Hi, This approach can help you: http://forums.unigui.com/index.php?/topic/5842-tunidbedit-alignment-property/&do=findComment&comment=29979 Best regards,
×
×
  • Create New...