Click here to Skip to main content
15,886,518 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionData Blocks Pin
Tiger4569-Jul-06 15:07
Tiger4569-Jul-06 15:07 
AnswerRe: Data Blocks Pin
Not Active9-Jul-06 16:16
mentorNot Active9-Jul-06 16:16 
QuestionForcing refresh of an HTML frame Pin
WebMaster9-Jul-06 15:03
WebMaster9-Jul-06 15:03 
AnswerRe: Forcing refresh of an HTML frame Pin
mnaveed9-Jul-06 22:25
mnaveed9-Jul-06 22:25 
GeneralRe: Forcing refresh of an HTML frame Pin
cloudking1196610-Jul-06 2:21
cloudking1196610-Jul-06 2:21 
QuestionASP.net MasterPages [modified] Pin
WebMaster9-Jul-06 13:13
WebMaster9-Jul-06 13:13 
QuestionQuery Strings and Frames Pin
JBL_Andon9-Jul-06 7:59
JBL_Andon9-Jul-06 7:59 
AnswerRe: Query Strings and Frames Pin
Guffa9-Jul-06 10:39
Guffa9-Jul-06 10:39 
Questionproved extra info for the membership? Pin
Snowjim9-Jul-06 6:56
Snowjim9-Jul-06 6:56 
QuestionCompiling 1.1 and 2.0 version of same library? Pin
rmatejka9-Jul-06 5:03
rmatejka9-Jul-06 5:03 
AnswerRe: Compiling 1.1 and 2.0 version of same library? Pin
RichardGrimmer11-Jul-06 5:26
RichardGrimmer11-Jul-06 5:26 
GeneralRe: Compiling 1.1 and 2.0 version of same library? Pin
rmatejka11-Jul-06 5:56
rmatejka11-Jul-06 5:56 
Questionevent in custom control [modified] Pin
g00fyman9-Jul-06 3:51
g00fyman9-Jul-06 3:51 
AnswerRe: event in custom control Pin
minhpc_bk9-Jul-06 16:45
minhpc_bk9-Jul-06 16:45 
GeneralRe: event in custom control Pin
g00fyman9-Jul-06 16:52
g00fyman9-Jul-06 16:52 
GeneralRe: event in custom control Pin
minhpc_bk9-Jul-06 17:13
minhpc_bk9-Jul-06 17:13 
GeneralRe: event in custom control Pin
g00fyman9-Jul-06 17:26
g00fyman9-Jul-06 17:26 
GeneralRe: event in custom control Pin
minhpc_bk9-Jul-06 18:24
minhpc_bk9-Jul-06 18:24 
GeneralRe: event in custom control Pin
g00fyman9-Jul-06 18:41
g00fyman9-Jul-06 18:41 
GeneralRe: event in custom control Pin
g00fyman9-Jul-06 19:05
g00fyman9-Jul-06 19:05 
GeneralRe: event in custom control Pin
g00fyman9-Jul-06 19:20
g00fyman9-Jul-06 19:20 
GeneralRe: event in custom control Pin
minhpc_bk9-Jul-06 19:32
minhpc_bk9-Jul-06 19:32 
GeneralRe: event in custom control [modified] Pin
g00fyman9-Jul-06 20:59
g00fyman9-Jul-06 20:59 
thanks for all your help so far,

the trouble i am having now is that the control is not rendered design time properly when it is a composite control, the properties are not being refreshed, like when i set a button group to YesNoCancel, i get nothing until i switch from design to source view to deign again.

so i moved the logic to create control hierarchy into createchildcontrols() then in render i just render the table that createchildcontrols() creates. but now the events aren't firing again and i can't see why as the events are wired up in CreateChildControls() still.

any ideas on how i can get design time support refreshing display when i change a property or


sorry to be a pain.

kind regards,
g00fy

this is what i have now

private WebTable MessageBoxTable = null;

private WebTable BuildHierarchy()
{
  // actual message box to hold all controls
  WebTable table = new WebTable(1, 1);
  table.Style[HtmlTextWriterStyle.Position] = (Location == MessageBoxLocation.CentreWindow) ? "absolute" : "relative";

  WebTable content = new WebTable(3, 1);
  WebTable header = CreateTitleBarPanel();
  WebTable body = CreateBodyPanel();
  WebTable buttons = CreateButtonsPanel();
  WebTable footer = CreateFooterPanel();

  // title bar
  table[0, 0].Controls.Add(header);

  // message area
  content[0, 0].Controls.Add(body);
  content.Width = new Unit(100, UnitType.Percentage);

  // buttons area
  content[1, 0].HorizontalAlign = HorizontalAlign.Center;
  if (DesignMode && Buttons.Count == 0)
  {
    content[1, 0].Controls.Add(new LiteralControl("Use the Property Browser to add the Message Box Buttons"));
    content[1, 0].Font.Bold = true;
    content[1, 0].Font.Name = "Verdana";
    content[1, 0].Font.Size = new FontUnit(11, UnitType.Pixel);
  }
  else
  {
    content[1, 0].Controls.Add(buttons);
  }

  // footer area
  content[2, 0].Controls.Add(footer);

  table.ID = this.ID;
  if (Draggable)
  {
    // mandatory attribute to enable dragging of message box,
    // drag handle is restricted to the title bar
    header.Attributes["onmousedown"] = "dragStart(event, '" + this.UniqueID + "_" + table.ID + "')";
    header.Style[HtmlTextWriterStyle.Cursor] = "move";
  }

  table.Height = base.Height;
  table.Width = base.Width;
  table[0, 0].Controls.Add(content);

  SetMessageBoxLocation(ref table);
  ApplyEmbeddedCssClasses(ref table, ref content, ref header, ref body, ref buttons, ref footer);

  foreach (Button button in Buttons)
  {
    button.Click += new EventHandler(Button_Click);
  }
  return table;
}

protected override void CreateChildControls()
{
  MessageBoxTable = BuildHierarchy();
}

protected override void Render(HtmlTextWriter writer)
{
  HtmlLink link = GetEmbeddedStyleSheet();
  WebTable table = MessageBoxTable;

  base.Controls.Add(link);
  base.Controls.Add(table);

  link.RenderControl(writer);
  table.RenderControl(writer);
}


-- modified at 3:31 Monday 10th July, 2006
GeneralRe: event in custom control Pin
minhpc_bk10-Jul-06 17:11
minhpc_bk10-Jul-06 17:11 
GeneralRe: event in custom control Pin
g00fyman10-Jul-06 17:42
g00fyman10-Jul-06 17:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.