Jump to content

Point

uniGUI Subscriber
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Point

  1. Hello, How to customize server message when max connection/session has reached ? default message like this : Can not create more sessions: [Max= 3, Current= 3] and i want to change with message like this : "Currently this website is full of visitors, please wait a little longer." hope that message only display when connection has been reached, but could display native exceptions message when other exceptions raise. Thank you in advance.
  2. It's work, thanks you mr Sherzod
  3. hello, anybody know how to hide last or all separators in grid navigator/pagination. fyi, i use theme's gray. thanks you.
  4. try to change DateTimePicker Format On Runtime, but doesnt work. procedure TMainForm.UniRadioGroup1Click(Sender: TObject); begin case UniRadioGroup1.ItemIndex of 0 : UniDateTimePicker1.DateFormat := 'dd MMMM yyyy'; 1 : UniDateTimePicker1.DateFormat := 'MMMM yyyy'; 2 : UniDateTimePicker1.DateFormat := 'yyyy'; end; end;
  5. it's seem done with unimainmodule -> desktopviewport -> maskscrollable = true
  6. How do I set the UniGui application that uses Extjs version 7 (unigui 1.90.xxx) to act like Extjs version 4 (unigui 1.0). On Extjs version 4 (unigui 1.0) the UniGu application can be opened on a mobile phone with full view and can be enlarged or reduced.
  7. how to change field label to normal color when a component unigui like unidbedit is disabled ?
  8. user defined paper not appear in paper size selection on pdf preview
  9. in the previous test case i am not enabled screen mask yet. and then I enable it, hope screen mask appears when I click the trigger button. but screen mask appear everytime I type in the unidbedit.
  10. hi sherzod, function click(sender, eOpts) { sender.showMask('Loading, Please Wait...'); ajaxRequest(sender, 'test'); } procedure TMainForm.UniDBEdit1AjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin if EventName='test' then begin Sleep(1000); end; end; That code show mask but not only button trigger, could you help me
  11. It's work very well. Thanks you. but now I have another problem when screen mask enabled to that unidbedit. every time I type a letter in the unidbedit, the screen mask appears. Can the screen mask appear only when clicking the trigger button? FYI, I avoid synchronous mode in my project.
  12. I mean, the trigger button on unidbedit should be hidden like the trigger button on unidblookupcombobox when the record status is read only.
  13. hi sherzod, i mean like in this video. btdbedit.mp4.mp4
  14. Hi, Trigger button not hide when datasource autoedit = false. even though the properties of the trigger button have been set to hidereadonly = true. Any suggestion? many thanks.
  15. Hi Mr Fred, I tried your sample code but Local Network IP not arise here.
  16. How to create new line message in sweetalert, for example : Information name : bla bla bla address : bla bla bla
  17. Are there no members here who are interested in making a book about the UNIGUI Framework. sometimes I feel this is not a Delphi character but thick with EXTJS. UNIGUI has combined two different programming language characters. I as a beginner sometimes have difficulty with this framework, because I did not know the EXTJS framework before. Many members here are competent to make books about UniGUI. this book can be divided into 3 parts: 1. beginner 2. advanced 3. expert. I think many members here are interested in buying it, including me.
  18. Point

    maximize form dd

    base on thread here : raise error when form maximize.
  19. finally i found without having to change the form name , sory me, extjs newbie function window.afterrender(sender, eOpts) { var me = sender; me.dd = new Ext.dd.DDProxy(me, { delegate: me.id }); me.dd.afterDrag = (function() { me.updateLayout() }); Ext.onReady(function() { me.dd.setHandleElId(sender.owner.UniPanel1.id); }); }
  20. the method I mean here is without changing the name of the form on each derivative.
  21. Its seem I should rename the parent form name on each child form, or is there a more concise method ?
  22. hi sherzod, here a testcase... DRAG FORM.7z
  23. hi sherzord, thanks for the response. i'm sorry sherzord, but the code doesn't work on its derivative form. and usually when the unigui form is moved there appears with color opacity, but not here
×
×
  • Create New...