Jump to content

Point

uniGUI Subscriber
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Point

  1. done : UnimFileUploadButton1.JSInterface.JSConfig('maxSize','1000000');
  2. how to implement this code on UnimFileUploadButton (mobile)?. on mobile version it doesn't have maxallowsize property
  3. Hello, is there method to display thousand separator in mobile data control like unimdbedit ? i try using format setting (PFmtSetting) and Field's display format has no effect. thanks
  4. after dizzing all day i found the problem. it's because '069' code. edtUser.JSInterface.JSCallDefer('focus',[false], 100); the code is placed in the button login without condition so it's cause rise error in browser inspector. after remove it, the error disappear. thanks you sherzod for attention.
  5. Hi everyone, Maybe one of you has experienced the same thing as me. i get an error like this in browser inspector. what is causing the error, and what does 069 mean. unigui 1564. Thank you in advance
  6. work very well. thanks you very much
  7. hi @Sherzod, i use your function in derived form to rearrange control. but form can't be closed. here a test case. atestcase.7z
  8. btw many thanks mr @irigsoft
  9. if i set z-index = 100 what about this : .leaflet-map-pane canvas { z-index: 100; }
  10. wait, seem it's work. unimap must set to autoZindex = false.
  11. not work too. I've tried it too like that, even with some configurations.
  12. it's oke, thanks for reply
  13. i dont know the name element for uniMap.
  14. unimap has properties autoZindex. and i set to auto, autoZindex = true.
  15. Hi, i setted like this : uniMap.CreateOrder := 1200; uniMap.MapControlOptions.AutoZIndex := False; unfortunately still doesn't work. i think it's about z-index. but i dont know how to set it. i check in leaflet.css too many z-index. .leaflet-pane { z-index: 400; } .leaflet-tile-pane { z-index: 200; } .leaflet-overlay-pane { z-index: 400; } .leaflet-shadow-pane { z-index: 500; } .leaflet-marker-pane { z-index: 600; } .leaflet-tooltip-pane { z-index: 650; } .leaflet-popup-pane { z-index: 700; } .leaflet-map-pane canvas { z-index: 100; } .leaflet-map-pane svg { z-index: 200; }
  16. how to resolved this issue
  17. Yes. Font awesome. == i was tried that script like this: on server module : .x-myicon-menu .x-menu-item-icon-default{ font-size: 12px; } .x-myicon-submenu .x-menu-item-icon-default{ top: 9px; font-size: 9px; } on ExtEvents, menu button : function afterrender(sender, eOpts) { var me=sender; var _addCls = function (item) { item.forEach(function (_item) { _item.addCls('x-myicon-submenu'); if (_item.menu) { _addCls(_item.menu.items.items) } }) }; me.addListener('menushow', Ext.defer(function () { if (me.menu) { _addCls(me.menu.items.items); } }, 100) ); } the problems : 1. this script apply to all menu icon. i need change icon on sub menu only. 2. the sub menu does not appear when the menu button is clicked on second time.
  18. hello, server module -> customCSS: .apopupmenu .x-menu-item-icon-default{ font-size: 9px; } On MainForm: procedure TMainForm.UniFormReady(Sender: TObject); begin with TXPopupMenu(UniPopupMenu1).MenuControl.JSInterface do begin JSConfig('cls', ['apopupmenu']); end; end; icon size not change for sub menu item. actually what I need is the sub menu icon to be smaller than the menu item. how to?
  19. Hi all, Maybe someone has the same experience as me. fastreport always raise error when Tfrxmemoview is set to allowhtmltags = true; it happen when report will export to pdf, what might be the cause Thanks.
  20. Hi hayri, I don't know if this is possible or not. trying to create a datasnap server application using unigui. if possible my plan will use hyperserver feature as a datasnap server farm. when session on application datasnap = 0, the application requests to hyperserver instance to restart it but remains on the same node id.
  21. Hello, is there a way send message/signal to hyperserver service to restart unigui application base on spesific node. thanks
  22. corrected : AFrame := TUniFrame1.Create(MainForm) AFrame.parent := panel1; //uniTabsheet1;
×
×
  • Create New...