Hi
I'm building a dynamic button view, which adds buttons programmatically depending on the amount of items in the database. Like a simple workflow engine. On the first page call the event handler works like expected. The new page with the new item is builded and returned to the client. On the second postback the event handler is NOT called and the view keeps the same items. By reclicking the same button (third postback), the breakpoint in the event handler is hitted.
My issue is why is the event handler not called even if i'm rebuilding the page (override OnInit()) on each post back?
For information: The methods LoadViewWithAlphabeticalDatasource() and LoadViewWithWorkflowItem() does quite the same, so i deleted one in section below. The events are added in same way.
Thanks in advance for any advice which helps to resolve the problem.
xavier
Code:
11 namespace EPS.Web.View.Article
12 {
13 public class DynamicGridView : BasePage, IDynamicGridView
14 {
15
40
41 protected override void OnInit(EventArgs e)
42 {
43 Presenter = new DynamicGridPresenter(this);
44 if (IsPostBack)
45 {
46 if (Presenter.Step smallerthan 2)
47 {
48 LoadViewWithAlphabeticalDatasource();
49 }
50 else
51 {
52 LoadViewWithWorkflowItem();
53 }
54 }
55 }
56
57 [PageMethod]
58 protected void Page_Load(object sender, EventArgs e)
59 {
60 if(!IsPostBack)
61 {
62 SetSubmenuVisible = false;
63 Presenter.InitView();
64 PrepareView();
65 }
66 AddEvents();
67 AddLabels();
68 PageMethodsEngine.InvokeMethod(this);
69 }
70
82
83 private void Back_Clicked(object sender, EventArgs e)
84 {
85 Presenter.StepEngine(DynamicGridPresenter.BACK, string.Empty, string.Empty);
86 PrepareView();
87 }
88
89 private void Cancel_Clicked(object sender, EventArgs e)
90 {
91 Presenter.StepEngine(DynamicGridPresenter.CANCEL, string.Empty, string.Empty);
92 PrepareView();
93 }
94
95 private void ForwardString(object sender, EventArgs e)
96 {
97 Presenter.StepEngine(DynamicGridPresenter.FORWARD, ((LinkButton)sender).CommandArgument, string.Empty);
98 PrepareView();
99 }
100
101 private void ForwardWorkflowItem(object sender, EventArgs e)
102 {
103 Presenter.StepEngine(DynamicGridPresenter.FORWARD, string.Empty, ((LinkButton)sender).CommandArgument);
104 PrepareView();
105 }
106
107 protected void PrepareView()
108 {
109 phDynamicGridView.Controls.Clear();
110 if (Presenter.Step smallerthan 2)
111 {
112 LoadViewWithAlphabeticalDatasource();
113 }
114 else
115 {
116 LoadViewWithWorkflowItem();
117 }
118 }
119
120 private void LoadViewWithWorkflowItem()
121 {
122 var table = new HtmlTable();
123 table.Attributes.Add("class", "tableDynamicGrid");
124 int max = GetRowLength(WODatasource.Count);
125 int temp = 1;
126 int actualPosition = 0;
127 int itr = 1;
128 var tr = new HtmlTableRow();
129
130 if (WODatasource.Count == 0)
131 {
132 phDynamicGridView.Controls.Add(new HtmlTable());
133 return;
134 }
135
136 foreach (WorkflowItem s in WODatasource)
137 {
138 if (actualPosition biggerOrEqual MaxLength && temp smallerOrEqual max)
139 {
140 table.Rows.Add(tr);
141 actualPosition = 0;
142 temp++;
143 tr = new HtmlTableRow();
144 }
145
146
147 actualPosition++;
148
149 var cell = new HtmlTableCell();
150 // cell.Attributes.Add("class", "cellDynamicGrid");
151 var btn = new LinkButton
152 {
153 CommandArgument = s.Oid.ToString(),
154 Text = s.SelectionItem.Name /*, CssClass = "linkButtonDynamicGrid"*/
155 };
156 btn.Click += ForwardWorkflowItem;
157
158 cell.Controls.Add(btn);
159 tr.Cells.Add(cell);
160
161 if (itr == WODatasource.Count && temp smallerOrEqual max)
162 {
163 while (itr biggerOrEqual WODatasource.Count && itr smallerThan max*MaxLength)
164 {
165 tr.Cells.Add(new HtmlTableCell());
166 itr++;
167 }
168 table.Rows.Add(tr);
169 phDynamicGridView.Controls.Add(table);
170 return;
171 }
172 itr++;
173 }
174 }
175
176 }
