Jump to content

Point

uniGUI Subscriber
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Posts 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.

    maxsession.png

  2.  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;

     

     

    uniguidtp.gif

    vcldtp1.gif

  3. 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.

  4. 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

  5. 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.

  6. 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);
        });
    }

×
×
  • Create New...