Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

Delphi: How to assign dynamically an event handler without overwriting the existing event handler? -


i need loop through components , assign event handler (for example dynamically assigning onclick event tbutton to

showmessage('you clicked on ' + (sender tbutton).name); 

the problem in cases assigned tbutton onclick event.

is there way solve problem?

let's imagine have button1 harcoded onclick event handler is:

showmessage('this button1'); 

after "parsing" full event handler button1 becomes:

showmessage('this button1'); // design time event handler code showmessage('you clicked on ' + (sender tbutton).name); // runtime added 

note: looking soliution allows me use tbutton without inheriting it.

you assignment of onclick before overwriting it, persist , use in new handler - chaining events.

something this:

  var original : tnotifyevent;    original := component.onclick;   component.onclick := newmethod; 

and in newmethod:

  if assigned(original) original(sender); 

you'll not want single original variable instead hold collection keyed on component.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -