Jump to content

molla2005b

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by molla2005b

  1. hi I have 2 registered main form RegisterAppFormClass(TMainForm1); RegisterAppFormClass(TMainForm2); I want to switch between theme. where I can apply this code? UniMainModule.MainForm:=MainForm1; or UniMainModule.MainForm:=MainForm2; and is this the right way to do that? tnx
  2. hi is TUniServerModule.Logger.AddLog(msg) thread safe? I want to use it from another thread to log changes. tnx
  3. hi Is there a temporary solution for this? best regard
  4. hi All DrawColumnCell seems not work or my be not implemented yet? I want to change background color of speceial column. best for all
  5. Thank you dear mohammad this is very usefull
  6. use pascal code mybe work UniDBGrid1.refresh;
  7. wow!!! Thanks dear Thanks for your fast answer
  8. hi I m useing UniDbGrid and want to span a rows base on a Column Data Is this practical? thanks
  9. thank you mohammad always you are amazing
  10. thank you mohammad you always amazing big thanks to you
  11. hi I have this problem with Unidac only.firedac is ok when set listonlymode=lmFollowSource set combo.ListSource=nil in design time and in run time set combo.ListSource=Query after the query is openned
  12. hi . it is usefull post.thanks I use vk_down and Tab I'm use tab key to fill columns data. I want to append a new record when tab key reach Last Column of last row and user press Tab again to append new record Best regards.
  13. function cellkeydown(sender, td, cellIndex, record, tr, rowIndex, e, eOpts) { if (e.getKey() == 40) { if (rowIndex==Last Row) <---- problem { e.stopEvent (); ajaxRequest(sender, 'AppendRow', [] ); } } } this is my code. tnx
  14. thank you mohammad greate work and help to us
  15. hi mybe this match your need https://market.sencha.com/extensions/ext-ux-data-proxy-websocket
  16. In RTL projects , All new themes don't show the Glaph in right place I tested on linux kde mac mac yosemite ubuntu win 10 Can Any One help?
  17. Missing vertical tabs component for Bootstrap 3 http://www.jqueryrain.com/?R4qgZDlY
  18. hi friends where We can use UniSession.UrlReferer property? What is do ?
  19. hi use this code procedure TMainForm.UniDBGrid1AfterLoad(Sender: TUniDBGrid); var DBGridJSName: string; begin DBGridJSName := (Sender as TUniDBGrid).JSName; UniSession.AddJS('Ext.defer(function(){' + DBGridJSName + '.getSelectionModel().deselectAll(); ' + DBGridJSName + '.view.refresh()}, 20); ' ); end; from Delphi Developerhttp://forums.unigui.com/index.php?/topic/7022-issue-with-gridselected/ but your DBGrid will be refreshed twice we need a DBGrid property to avoid this action
×
×
  • Create New...