Jump to content

molla2005b

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by molla2005b

  1. procedure TUniMainModule.UniGUIMainModuleNewComponent(AComponent: TComponent); begin if AComponent is TUniForm then (AComponent as TUniForm).RTL := UniMainModule.RTL; end; the above code not work? UniMainModule.RTL:=true; MainForm.RTL:=True; I have more than 200 form in the project. thanks in advance
  2. Ramadan Mubarak
  3. https://github.com/szimek/signature_pad you can find them here
  4. I have using unimDBlistgrid with template I want to scroll to last record I can't find a working solution yet. my uni version is 1.0.0.1425 and i will renew soon thanks in advance
  5. hi How can it be done in uniGui Touch? (prevent full page scrolling in ios safari) this is solution used for react native how we can use with unigui body scroll lock Best Regards
  6. is possible to invoke iOS/Android system share dialogs from mobile webbrowser? best regards
  7. you can use in datasnap and in isapi, in delphimvc, in indy based servers, in mars, etc. in any delphi 64 app link
  8. hi How to Disable search engine indexing for my UniGui web application best regrad
  9. https://github.com/gportela85/DateTimeField
  10. my be he speaking about http://www.unigui.com/blog last update date is : Monday, 07 August 2017 10:58
  11. https://www.sencha.com/blog/announcing-sencha-ext-js-6-6-with-open-tooling-ga/
  12. رمضان كريم، وكل عام وأنتم بخير
  13. This same based on IORM & MVVM Open Sourse https://github.com/mauriziodm/iORM/tree/develop/Samples/PhoneContacts_MVVM_CrossFramework/uniGUI
  14. hi I want to Display WIDEMemo in unimDBGRID column like attached image is any solution?
  15. sorry . not work I send u a test case spkey.rar
  16. Thanks all my problem in javascript code finally I slove it by this code s:='function specialkey(sender, e, eOpts) '+ ' { '+ ' if (!(e.shiftKey) && (e.getKey() == 13))'+ ' { '+ ' e.stopEvent(); '+ ' '+FindAccountFrame.cmbAccount.JSName+'.focus();'+ ' }'+ ' }'; cmbType.ClientEvents.ExtEvents.Values['specialkey']:=s; but why frmOrder.FindAccountFrame.cmbAccount.focus(); not work?
  17. i have a frame as Component (TFindAccountFrame) this frame contain a combobox named cmbAccount I want to move the focus from a control to cmbAccount by Enter key but this code note work : frmOrder.FindAccountFrame.cmbAccount.focus(); How I can get the right name of cmbAccount in specialkey evevt. thanks
  18. function specialkey(sender, e, eOpts) { if (! (e.shiftKey) && (e.getKey () == 13)) { e.stopEvent (); frmOrder.FindAccountFrame.cmbAccount.focus(); } } I want to set focus of cmbAccount control cmbAccount is owned by FindAccountFrame frame. thanks for help
×
×
  • Create New...