Jump to content

implemented server side ?


maher

Recommended Posts

Hi,

 

Are all the codes (Delphi codes) implemented just in the server side

 

Eg.:

 

procedure TMainForm.UniButton1Click(Sender: TObject);

begin

UniEdit1.Text = '1';

begin

 

procedure TMainForm.UniButton1Click(Sender: TObject);

begin

UniEdit1.Text = myFun('');

end;

.

.

.

.

.

Thanx

Maher

Link to comment
Share on other sites

All "Delphi" events are handled on server side (it's a principle of uniGUI).

 

And conversely, there exist pure browser (i.e. client) events too, usualy handled under ExtEvents property (for Ext JS framework events). But using AjaxRequest command in JavaScript you can handle them on server side too.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...