Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12115
  • Joined

  • Last visited

  • Days Won

    807

Everything posted by Farshad Mohajeri

  1. In Json and JScript Backslash is a control char which can initiates special sequences. Use double backslashes to display them.
  2. In both page mode and windowed mode Background color of MainForm can be set via MainForm.Color.
  3. OnDestroy is called when session is timeout or destroyed by closing MainForm.
  4. Please add your request to our "survey" thread.
  5. Fire Monkey! Formerly known as VGScene. It uses a different set of visual controls for creating xplatform apps. http://www.andreanolanusse.com/en/video-delphi-xe2-and-firemonkey-app-on-windows-mac-and-ios/
  6. XE2 looks like a revolutionary release. Let's hope it won't come with too much bugs.
  7. Nightly builds can be highly unstable as I'm still playing with core elements from time to time.
  8. Series color is automatically selected by Flash chart component. As far as I know title can't be changed at runtime. When we switch to Ext JS 4 and non-flash charts there will be more options.
  9. You can retrieve all active sessions using below code: procedure TMainForm.UniButton2Click(Sender: TObject); var I : Integer; ASessionList: TList; ASession : TUniGUISession; begin UniListBox1.Clear; ASessionList:=UniServerModule.SessionManager.Sessions.SessionList.LockList; try for I := 0 to ASessionList.Count-1 do begin ASession := TUniGUISession(ASessionList[i]); if not ASession.Terminated then UniListBox1.Items.Add( ASession.UniApplication.RemoteAddress ); end; finally UniServerModule.SessionManager.Sessions.SessionList.UnlockList; end; end;
  10. If this error happens inside a user operation then it should pop an exception window. By saying "user operation" I mean an event which is initiated from browser.
  11. It is related to specific site you load in UrlFrame. If it has tendency to put itself over all other screen elements then there is nothing to do about it.
  12. Series can't be created at runtime, but you can modify data of an existing Series.
  13. In ajaxRequest first parameter can not be null. You must provide an instance of an existing object. Try this: ajaxRequest(MainForm.form, "testvalue", ["param0=A","param1=B"]) on server side monitor AjaxEvent of MainForm.
  14. I will add a solution in future versions. Logged #1120
  15. Try this: ServerModule->StandAloneServer->True
  16. Add uniGUIBaseClasses uniGUITypes UniGUIAbstractClasses to Uses list. Those properties that aren't published are not implemented.
  17. Those properties aren't implemented for web mode hence not published anymore. For Combo use OnSelect instead of OnChage.
  18. http://forums.unigui...ndpost__p__2689 or http://www.unigui.com/wpblog/2011/07/28/migration-to-version-0-86/
  19. It is not clear from your code. You need to send a test case which reproduces the problem.
  20. Solution: if (document.body) { document.body.addEventListener('touchmove',function(event){ event.preventDefault(); },false); }
×
×
  • Create New...