this.txtNAME.Text = this.txtFIRSTNAME.Text + " :" + this.txtLASTNAME ;
the value of TEXt changes in the DEBUG window but the values does not change on the screen. How do I force the change ?
thanks again!!!
| <telerik:GridTemplateColumn HeaderText="Starttime" UniqueName="Starttime" > |
| <EditItemTemplate> |
| <telerik:RadTimePicker ID="rtpStartTime" runat="server"> |
| </telerik:RadTimePicker> |
| </EditItemTemplate> |
| <ItemTemplate> |
| <asp:Label ID="lblStarttime" runat="server" Text='<%# Eval("StartTime","{0:t}") %>'></asp:Label> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="End time" UniqueName="EndTime"> |
| <EditItemTemplate> |
| <telerik:RadTimePicker ID="rtpEndTime" runat="server" |
| </telerik:RadTimePicker> |
| </EditItemTemplate> |
| <ItemTemplate> |
| <asp:Label ID="lblEndTime" runat="server" Text='<%# Eval("EndTime", "{0:t}") %>'></asp:Label> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
|
Requirements |
|
| RadControls version |
2009.3.1314 |
| .NET version |
ALL |
| Visual Studio version |
ALL |
| programming language |
C# |
| browser support |
all browsers supported by RadControls |
| static void grid_ItemCreatedAddIdHeader(object sender, GridItemEventArgs e) |
| { |
| var colno = 1; |
| if (e.Item is GridHeaderItem) |
| { |
| colno = 1; |
| GridHeaderItem headItem = e.Item as GridHeaderItem; |
| foreach (GridColumn col in headItem.OwnerTableView.Columns) |
| { |
| TableCell cell = headItem[col.UniqueName]; |
| cell.Attributes["id"] = string.Format(CultureInfo.CurrentCulture, "header{0}", colno); ; |
| colno++; |
| } |
| } |
| if (e.Item is GridDataItem) |
| { |
| // Add headers alternative to grid |
| colno = 1; |
| foreach (GridColumn col in dataItem.OwnerTableView.Columns) |
| { |
| TableCell cell = dataItem[col.UniqueName]; |
| cell.Attributes["headers"] = string.Format(CultureInfo.CurrentCulture, "header{0}", colno); ; |
| colno++; |
| } |
| } |
| } |
Hi all
I have a request to provide the ability to divide large amounts of copy into tabs; so the user doesn't have to scroll vertically to read the text.
What I'd really like to do is to be able to use the TabStrip control embedded in the page content control. The content creator could then add as many tabs as required, subsequently adding the text for each newly created tab. I'd would then need the number of tabs and the text associated with each tab stored somehow, so when the page is viewed in presentation mode it all just magically comes together and displays neatly.
Is this possible?