HighTechTalks DotNet Forums  

Problem with EditableDesignerRegion and Set/Get methods ..

ASP.net Building Controls microsoft.public.dotnet.framework.aspnet.buildingcontrols


Discuss Problem with EditableDesignerRegion and Set/Get methods .. in the ASP.net Building Controls forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Micke Andersson
 
Posts: n/a

Default Problem with EditableDesignerRegion and Set/Get methods .. - 07-31-2006 , 02:22 PM






I have a slight problem with
SetEditableDesignerRegionContent(region,content) .. it keeps telling me that
I already have a control with the same ID when I try to update, thus failing
and somehow actually adding stuff twice ..

so what am I doing wrong? I have a custom control which contains a list of
other controls (TabControl and a list of Tabs), but I cannot use templates
since I want attributes on the Tabs themselves). It all works runtime - and
in the designer - but on and off when I do certain changes, I cannot persist
the EditableDesignerRegion contents due to contents apparently appearing
twice.

The designer is actually bound to the TabControl, but actually what I am
editing is the contents of the Tab - the TabControl selects what Tab is
active dynamically so I don't really know how to do it another way. I'm
pretty certain the problem is at or near the GetEditable...() and
SetEditable...() functions, so can anyone give me a hint on how to persist
Tab data from the designer correctly?

I tried looking at information about ControlParser and ControlPersister, but
there's not a lot out there that i can can find

EditableDesignerRegion is created from a <div> tag surrounding each tab
(generated by TabControl.Render()) and is filled with the designer mark
(__designer="0" in this case) when in design mode.

/Micke Andersson


public override string
GetEditableDesignerRegionContent(EditableDesignerR egion region) {
IDesignerHost host =
(IDesignerHost)Component.Site.GetService(typeof(ID esignerHost));
try {
if (host != null) {
Tab tab = _c.Tabs[region.Name];
string s = "";
foreach (Control cc in tab.Controls) {
s += ControlPersister.PersistControl(cc, host);
}
return s;
}
} catch (Exception ex) {
_(" EXCEPTION: " + ex.Message);
}
return "";
}

public override void SetEditableDesignerRegionContent(EditableDesignerR egion
region, string content) {
int currentstep = 0;
if (content == null)
return;
try {
IDesignerHost host =
(IDesignerHost)Component.Site.GetService(typeof(ID esignerHost));
if (host != null) {
Tab tab = _c.Tabs[region.Name];
tab.Controls.Clear();
Control[] c = ControlParser.ParseControls(host, content);
foreach (Control cc in c) {
tab.Controls.Add(cc);
}
}
} catch (Exception ex) {
_(" EXCEPTION: " + ex.Message);
}
}



Reply With Quote
  #2  
Old   
Micke Andersson
 
Posts: n/a

Default RE: Problem with EditableDesignerRegion and Set/Get methods .. - 08-01-2006 , 11:28 PM






Noone?

"Micke Andersson" wrote:

Quote:
I have a slight problem with
SetEditableDesignerRegionContent(region,content) .. it keeps telling me that
I already have a control with the same ID when I try to update, thus failing
and somehow actually adding stuff twice ..


Reply With Quote
  #3  
Old   
Alessandro Zifiglio
 
Posts: n/a

Default Re: Problem with EditableDesignerRegion and Set/Get methods .. - 08-02-2006 , 06:12 AM



hi Micke, I dont know the structure of your code logic and what you are
doing exactly to get this problem. One of the things i have noticed when
using designer regions and editabledesignerregions is that if i emit the
call to base.SetViewFlags in the Initialize method of my designer class then
unique ids are not maintained.


/*
* The designer host calls Initialize to initialize the component
for design.
* The base implementation will throw an exception if the associated
* control does not implement the INamingContainer interface.
*/
public override void Initialize(IComponent component)
{
this._c = (Tab)component;
base.Initialize(component);
// Seems like without setting ViewFalgs for TemplateEditing then
// any control you add into the region does not maintain
// a unique id :| No idea why this is the case but it dont
bother me
// to add this simple one line.
base.SetViewFlags(ViewFlags.TemplateEditing, true);
}

if this did not fix your issue, then let me know and i'll try to put
together a small test control with tabs and designer regions /
editabledesignerregions working, to get you started.

Regards,
Alessandro Zifiglio
http://www.AsyncUI.net

"Micke Andersson" <MickeAndersson (AT) discussions (DOT) microsoft.com> ha scritto nel
messaggio news:38D2DC9D-3C8E-4C2A-B2E3-4A20FE1AA885 (AT) microsoft (DOT) com...
Quote:
Noone?

"Micke Andersson" wrote:

I have a slight problem with
SetEditableDesignerRegionContent(region,content) .. it keeps telling me
that
I already have a control with the same ID when I try to update, thus
failing
and somehow actually adding stuff twice ..




Reply With Quote
  #4  
Old   
Micke Andersson
 
Posts: n/a

Default Re: Problem with EditableDesignerRegion and Set/Get methods .. - 08-02-2006 , 06:26 PM



That actually appears to have fixed it. While I am not editing templates per
se, I understand the logic behind it, kinda. Maybe they should have called
that option something else - something more generic- if it just makes the
designer aware of the fact that there's actually other web code living around
it.

Oh, and write some help past the automatically generated stuff once you get
past looking for help about adding an onClick event

Thanks a lot for helping out,
/Micke

"Alessandro Zifiglio" wrote:

Quote:
hi Micke, I dont know the structure of your code logic and what you are
doing exactly to get this problem. One of the things i have noticed when
using designer regions and editabledesignerregions is that if i emit the
call to base.SetViewFlags in the Initialize method of my designer class then
unique ids are not maintained.


Reply With Quote
  #5  
Old   
Alessandro Zifiglio
 
Posts: n/a

Default Re: Problem with EditableDesignerRegion and Set/Get methods .. - 08-03-2006 , 08:41 AM



Your welcome, Micke. I agree that SetViewFlags is badly documented and named
=P

Regards,
Alessandro Zifiglio
http://www.AsyncUI.net

"Micke Andersson" <MickeAndersson (AT) discussions (DOT) microsoft.com> ha scritto nel
messaggio news:6476AEC0-037E-4938-81A8-8C8E0B56A397 (AT) microsoft (DOT) com...
Quote:
That actually appears to have fixed it. While I am not editing templates
per
se, I understand the logic behind it, kinda. Maybe they should have called
that option something else - something more generic- if it just makes the
designer aware of the fact that there's actually other web code living
around
it.

Oh, and write some help past the automatically generated stuff once you
get
past looking for help about adding an onClick event

Thanks a lot for helping out,
/Micke

"Alessandro Zifiglio" wrote:

hi Micke, I dont know the structure of your code logic and what you are
doing exactly to get this problem. One of the things i have noticed when
using designer regions and editabledesignerregions is that if i emit the
call to base.SetViewFlags in the Initialize method of my designer class
then
unique ids are not maintained.




Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.