Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Everything posted by mhmda

  1. Here you go: MainForm->Unievents: function window.beforeInit(sender, config) { config.baseCls='frmNoBorderRadius'; config.cls='frmNoBorderRadius'; } CSS: .frmNoBorderRadius { border-radius: 0px !important; border: none !important; } .x-css-shadow { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } Result:
  2. CSS: https://www.w3schools.com/cssref/css3_pr_word-wrap.asp
  3. This is not 'Magic' spaces it's the border of Window/Panel, you can use css to override this behavior or use 'border' = None from design view.
  4. I use GSAP library: https://greensock.com/gsap
  5. Here a few screenshots from several projects:
  6. You can refer to Extjs doc. and see all properties for Panel special the 'cls' property.
  7. Online demo: http://5.189.151.122:8067/m Project: http://3msoft.net/mhmd/mobilescroll.rar Don't forget to set 'scrollable=true' for 'Blue' panel in unievents: function beforeInit(sender, config) { config.scrollable=true; }
  8. There is no clientevents (I know this is a menu) but I want to assign a css class to it, how can I do that?
  9. You can just control the text style, if you want to draw a border it is more complicated than you think, it is web not desktop.
  10. Fastreport. please see fastreport demo, and it is supports pdf.
  11. This may help you: http://forums.unigui.com/index.php?/topic/8047-dbgrid-dragdrop-advanced-tutorial/
  12. Hello, Here is a demo project showing how to drag a row from dbgrid to control (panel) or to other dbgrid. Online demo here: http://5.189.151.122:8045/ Project here: http://3msoft.net/mhmd/uni_DBGridDragDrop.rar
  13. mhmda

    Multiple forms

    http://localhost:8077/?username=xxxxx&password=yyyyy&frm=Form2 For now we use this implementation: [Login form] - [MainForm] - [Form1] - [Form2] - [Form3]...... I we want to start the app from specific form we MUST first we hide the login form and display the MainForm and from there we navigate (automatic) to [Form2]. We suggest a property in MainModule for "StartForm" so we could easily display the form for various users and we could change it at run time.. For now it is difficult to use, we must hide LoginForm and show MainForm and from there we add code based on the parameters from client side to show the specific form.
  14. Works like a charm....
  15. send an ajax request to server side
  16. Well, in our first unigui projects we have used c3.js library and it is lovely one. But now we use only unicharts and I think it give us all what we want, so I afvice you using uniguichart component and if there is anything that you do not know how to use let me know and I will see how can I help you.
  17. Online demo: http://5.189.151.122:8040/ Project: http://3msoft.net/mhmd/uniFormBorder.rar
  18. See this: http://forums.unigui.com/index.php?/topic/7934-animate-controls-using-greensock-gsap-library/
  19. Demo online: http://5.189.151.122:8039/ Project: http://3msoft.net/mhmd/UniAnimate.rar
  20. We use greensock library with unigui
  21. Use this approach: frmEmailSettings.grdEmails.showMask('Loading list...');
×
×
  • Create New...