Jump to content

andyhill

uniGUI Subscriber
  • Posts

    1266
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by andyhill

  1. Thanks Gerhard, I checked out Leaflet and found that with Australia data it does not show house locations like Google and others. My goal is to use Google Maps with Polylines (all good now). Additionally I want the option (I will call it edit mode) to Add Points into the Polyline, Delete Points from the Polyline and most importantly Drag Polyline Points to new positions whilst viewing the map.
  2. Gerhard, I am so sorry that it was a typo - I put it down to old age - thank you. I am however interested in your leaflet project to see if it has good coverage. Also, at present Google seems to have the most exhaustive coverage so probably in Australia we would have to stick with Google. My dream would be to have Interactive Google PolyLines (add/delete/drag points) then retrieve point info for DB storage.
  3. Thanks Gerhard, your solution is to use a GoogleMap Component which I do not do. If I can add Markers, Circles and Images without a component surely I can add PolyLines ? I would appreciate getting my sample code above to work.
  4. I have been able to draw markers and circles fine but am having problems with polylines, can someone please advise - thanks. UniSession.AddJS('var gm = googleMap; '+ 'if (typeof gm == "object") '+ '{ '+ ' var PathCoordinates = '+ ' ['+ ' {lat: -37.842521707298296, lng: 144.6705822349851},'+ ' {lat: -37.84328847009031, lng: 144.6718965174024},'+ ' {lat: -37.84340920273167, lng: 144.67219424260304},'+ ' {lat: -37.84345580124215, lng: 144.67245307577298}'+ ' {lat: -37.84412353348225, lng: 144.67519362283394},'+ ' {lat: -37.84445395544746, lng: 144.67542965722726},'+ ' {lat: -37.84683464430723, lng: 144.67503269029305},'+ ' {lat: -37.846206649771126, lng: 144.66954341367773},'+ ' {lat: -37.84302853810139, lng: 144.67027782310845},'+ ' {lat: -37.84251570967168, lng: 144.6705956648767}'+ ' ];'+ ' var MyPolyline = new google.maps.Polyline'+ ' ('+ ' {'+ ' path: PathCoordinates,'+ ' geodesic: false,'+ ' strokeColor: ''#FF0000'','+ ' strokeOpacity: 1.0,'+ ' strokeWeight: 2'+ ' }'+ ' );'+ ' MyPolyline.setMap(gm);'+ '} ' );
  5. The following code adds a button to the slider as expected. with UnimSlider1.JSInterface do begin JSCode(#1'.bodyElement.insertSibling('+ BitBtn.JSName +'.element, "after");'); I need to set the Buttons Height to 48 pixels, please advise how - thanks in advance
  6. Looking Good Gerald, when will it be available ?
  7. GerhardV, Are we any closer to a Mobile Touch Theme (like the original Touch) ?
  8. Any progress ? Sent from my iPhone using Tapatalk
  9. I appreciate your suggestions Ralf. As I wanted a permanent returning user identification system (not using current sessions) I have opted for an encrypted cookie (stored on the user's device with the decryption key stored on my HTTP Server DB that only my webapp knows how to use and decode) with a short term expiry of course. Yes it is flawed if Cookies are disabled but then again UniGUI uses Cookies so what happens then (check it out, walk through the cookies).
  10. dan602, I used this messy work around:- Paint only first column's captain, if necessary add the second column's description to the first column's captain.
  11. __current_theme=uni_emerald
  12. I notice the UniGUI Framework uses Cookies to store the Theme. Question: If Device disables cookies how will this effect UniGUI ?
  13. This only uses the current session ID and not the Device Hardware ID, therefore it is useless to interrogate the returning device to the website (not using cookies).
  14. elGringo, How did you go with Tokens ? I want to store a reproducible Unique Token from the users Device (Mobile and Desktop [Mac Address ?]) to validate user - not cookies - can you help ?
  15. I am waiting for your Mobile Sencha Touch emulation theme.
  16. Tried your SigTest on iPhoneX and 6.5.3 runtime fails:- ERROR "missing variable resizeCanvas" ?
  17. How are we going with the original Sencha Touch Theme ?
  18. Need FieldLabel FontColor and Color and Font setting capabilities like the new TunimEdit.
  19. How do I define 6.5.3 Mobile DatePicker Tumbler Captions and Slot Order (I want DayOfTheWeek, Day, Month, Year) ? I cannot get the DatePickerChange and DatePickerChangeValue Events to fire ? Also need FieldLabel FontColor and Color and Font setting capabilities like the new TunimEdit.
  20. How do I setup 6.5.3 Mobile TimePicker Tumbler Captions and restrict Minutes to 15 minute increments ? Also need FieldLabel FontColor and Color and Font setting capabilities like the new TunimEdit.
  21. Please show me how to set "Mobile UnimEdit: FieldLabel Color, EditText Color, EditText Background Color ?" EditUser.ClientEvents.UniEvents.Clear; s:= 'beforeInit=function beforeInit(sender, config)'#13#10+ '{'#13#10+ ' config.cls='#39'customLabel1'#39';'#13#10+ '}'; EditUser.ClientEvents.UniEvents.Add(s); CustomCSS.Add('.customLabel1 '); CustomCSS.Add('{ '); CustomCSS.Add(' color: red; '); // NO EFFECT CustomCSS.Add(' background-color: #A7D0FE; '); // WORKS CustomCSS.Add(' font-color: blue; '); // NO EFFECT CustomCSS.Add(' text-font-color: red; '); // NO EFFECT CustomCSS.Add(' text-background-color: yellow; '); // NO EFFECT CustomCSS.Add('} ');
  22. On a Mobile DBListGrid - How do I set the Header Background Color ? I played with $grid-header-background-color to no avail.
  23. ServerModule CustomCSS.Add('._myFieldlabel1Cls { font-weight: bold; color: blue; font-size: 18pt; text-align: left; padding-top: 7px; }'); TunimEdit.ClientEvents.UniEvents function beforeInit(sender, config) { config.labelCls = '_myFieldlabel1Cls'; } Also need TunimEdit.text CSS font color and background color code Please advise - thanks
  24. Can you do a Mobile one like the original Sencha Touch ?
×
×
  • Create New...