I have a image inside ckeditor and now, i want to show some options on mouse over of that image. I am using asp.net 3.5 with c#. what i did is this in .CS file:
HtmlImage htmlimg = new HtmlImage();
htmlimg.Src = path;
htmlimg.Attributes.Add("onmouseover", "displayeditdiv()");
ckeditorinstance.Controls.Add(htmlimg);
although imag is dispplayed correctly within ckeditor. bt no event is firing for that image. this is the one of the options i have implemented to work with the events for the controls inside ckeditor. bt no matter, whatever approach i follow the events doesnt seem to fire for control inside ckeditor. need help!!!
HtmlImage htmlimg = new HtmlImage();
htmlimg.Src = path;
htmlimg.Attributes.Add("onmouseover", "displayeditdiv()");
ckeditorinstance.Controls.Add(htmlimg);
although imag is dispplayed correctly within ckeditor. bt no event is firing for that image. this is the one of the options i have implemented to work with the events for the controls inside ckeditor. bt no matter, whatever approach i follow the events doesnt seem to fire for control inside ckeditor. need help!!!