| <telerik:RadGrid ID="radGridUsers" runat="server" AllowPaging="True" Skin="Telerik" GridLines="None" OnEditCommand="radGridUsers_EditCommand" AllowSorting="True" AutoGenerateColumns="False" OnItemCreated="radGridUsers_ItemCreated"> |
| <pagerstyle nextpagetext="Next" prevpagetext="Prev" mode="NextPrevAndNumeric"></pagerstyle> |
| <mastertableview commanditemdisplay="Top" datakeynames="userName"> |
| <Columns> |
| <telerik:GridButtonColumn CommandArgument="Select {0}" UniqueName="column" Text="Select" CommandName="Select" DataTextFormatString="Select {0}"></telerik:GridButtonColumn> |
| <telerik:GridBoundColumn DataField="userName" UniqueName="userName" HeaderText="User Name"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="surName" UniqueName="surName" HeaderText="Last Name"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="foreName" UniqueName="foreName" HeaderText="First Name"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="dateOfBirth" UniqueName="dateOfBirth" HeaderText="Date of Birth"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="templateName" UniqueName="templateName" HeaderText="Role"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="currentStatus" UniqueName="currentStatus" HeaderText="Status"></telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn UniqueName="TemplateColumn" HeaderText="Action"> |
| <ItemTemplate> |
| <telerik:RadComboBox ID="radComboActions" runat="server"> |
| <Items> |
| <telerik:RadComboBoxItem Text="-- Action Menu --" /> |
| <telerik:RadComboBoxItem Text="Edit" /> |
| <telerik:RadComboBoxItem Text="Enable/Disable" /> |
| <telerik:RadComboBoxItem Text="Reset Password" /> |
| </Items> |
| </telerik:RadComboBox> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| </mastertableview> |
| <filtermenu enabletheming="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </filtermenu> |
| </telerik:RadGrid> |
I've been using the new 2008 Q2 for a while, and I am very happy about these new tool set until this project.
1. I got this error message on every rad.control i put on my page at "design-time":
Error Creating Control - RadScriptManager
unable to create type 'telerik.scriptmanager' (or any control 'telerik.xxxxxxxxx')
Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
The error shows in controlbox under design view, not showing in error list. And most RadControls are still working at run-time.
2. The drag & drop and double click to create new control from toolbar also not working.
3. No smart tag because the first error.
4. There's script error message in IE when I use RadFormDecorator.
I actually import this page to other project, and it works just fine without any error, so I believe this error is related to error #1.
This project is an old project and was original created in VS 2003, we converted into VS 2008. I think there might be some settings in web.config cause the problem?
How can I fix this problem? Please help.