Jump to content

Marco Hsu

uniGUI Subscriber
  • Posts

    22
  • Joined

  • Last visited

Everything posted by Marco Hsu

  1. unimhtmlframe.html= <div id="allmap"></div> <span id="curraddress"></span> <script type="text/javascript"> var map = new BMap.Map("allmap"); var point = new BMap.Point(120.61990712, 31.31798737); map.centerAndZoom(point, 17); var pointAttendance; var geolocation = new BMap.Geolocation(); geolocation.getCurrentPosition(function (r) { if (this.getStatus() == BMAP_STATUS_SUCCESS) { var mk = new BMap.Marker(r.point); map.addOverlay(mk); map.panTo(r.point); point = new BMap.Point(r.point.lng, r.point.lat); var geoc = new BMap.Geocoder({extensions_town: true}); geoc.getLocation(point, function (result) { if (result){ document.getElementById("curraddress").innerHTML = result.address } }); } else { alert('failed' + this.getStatus()); } }, { enableHighAccuracy: true }) </script> <style> #allmap { width: 100%; height: 200px; } </style> I want to read the 【curraddress】 value to unimlabel.caption ; what can i do?
  2. .custom48Glyph .x-icon-el { width: 48px !important; height: 48px !important; }
  3. I had found a solution with UnimBitBtn.UnimSegmentButton can not .
  4. I use a UnimSegmentedButton control to make it ,but when i click,it can not work.
  5. 国内的一般在QQ群里交流了,实在来这里的话,就用英语了。
  6. Thank you,but I have a small question: I cannot set the Image's Height and Wight.The Image is very small when the form is showing.
  7. I want to set UnimSegmentedButton's Image above the text,like the second image. Tks!
  8. My code is error; The unimEdit's border is still exist; Could you tell me How to Remove the Left、Top and Right border?
  9. All input I want to use all input controls this style on the form . Include unimEdit,UnimDatePicker1,etc..
  10. I am designing the mobile app,I want to get this Style when I use the unimEdit Controls or other Input Controls. ver:1.90 1508
  11. my css code: .EDT_login{ border-style: none none groove none; border-width: 1px; border-color: #3EC4ED; #box-shadow: 0px 1px 3px #BEE2F9; background-image: none; }
  12. How to set up the control can not be affected by the theme?
  13. I want to let the UniMainMenu control mouse close to the automatic pop-up sub menu, how to set up?
×
×
  • Create New...