
Sherzod
Moderators-
Content Count
12103 -
Joined
-
Last visited
-
Days Won
348
Content Type
Profiles
Forums
Calendar
Everything posted by Sherzod
-
Please explain in more detail then.
-
Hi, Something like this: 1. function beforeedit(editor, context, eOpts) { return ajaxRequest(this, 'getCheck', [], false).responseText == 'true'; } 2. procedure TMainForm.UniDBGrid1AjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin if EventName = 'getCheck' then begin if ClientDataSet1.FieldByName('EmpNo').AsInteger < 20 then UniSession.SendResponse('true') else UniSession.SendResponse('false') end; end;
-
send event to client - if server has informations for him
Sherzod replied to erich.wanker's topic in General
Hello, I think you have to use sockets. Try looking for solutions on the forum. -
DBGrid How can I set Rows in read-only depending on a column value ?
Sherzod replied to benoitclaeys's topic in General
Hello, Can you please explain in more detail? -
Hello, Please specify which edition of UniGUI are you using?
-
On the other hand, can you "download" external links to the PDF to the server first, and then "load" them from the local folder!?
-
Try this. MainForm -> Script: $.extend($.inputmask.defaults, { 'clearMaskOnLostFocus': false });
-
OK, I will check.
-
If possible, create a simple testcase, I will try to analyze it on your testcase.
-
Hi, Can you please explain in more detail?
-
Currently not possible.
-
For example open google.com, same thing. You shouldn't use simple cookie names...
-
V 1.00.00 [UNG-2175] - Client side JS hacking is possible when control's parent is disabled or invisible.
-
Simply use dataset insert operations.
-
procedure TMainForm.UniButton2Click(Sender: TObject); var TabSheet: TUniTabSheet; onCloseTab: String; begin onCloseTab := 'function beforeclose(panel, eOpts){ '+ ' alert("close event"); ' + '}'; TabSheet := TUniTabSheet.Create(MainForm); with TabSheet do begin Caption := 'Tab 2'; Name := 'Tab_2'; Closable := true; ClientEvents.Enabled := true; ClientEvents.ExtEvents.Values['beforeclose'] := onCloseTab; PageControl := UniPageControl1; end; end;
-
TkbmMemTable?
-
Hello, Once again, are you sure the UniGUI installation was successful? Have UniGUI folder paths been added to the "library path"? You are not using the trial version, are you?