Tag: telerik

第三方WPF控件:Devexpress vs Telerik

我想听听你对两个控制提供商的看法。 简而言之:我正在构建一个经典的LOB桌面应用程序。 该应用程序将完全在WPF中创建。 PRISM 4.0将被大量使用。 只要有可能,我将尝试遵循MVVM模式(如果选择的控件设计为容易采用它将会很好)。 主要是我感兴趣的是: 良好的数据网格,支持排序,过滤,分组,导出,打印和大量绑定记录(10k +)工作正常 Combobox支持过滤和自动完成。 导航栏 布局管理器与VS 2010使用的布局管理器类似 从长远来看,我也想用他们的: 报告工具 “数据挖掘”控件 本地化支持 ,以便本地化数据网格操作,例如,.. 我已经使用Winforms Devxpress一段时间了,我非常满意。 他们的支持团队很棒。 不过,我想检查市场上是否有更好的选择。 换句话说,我想知道Telerik的控件是否有任何额外的价值?

ASP.NET AJAX UpdatePanel和动态HTML插入问题(Telerik)

好的,我有一个问题。 我目前正在开发一个使用Telerik框架进行ASP.NET AJAX的项目,尽管这并不重要,因为我完全(几乎)绕过Telerik完成这部分工作。 我正在将一个类似Facebook的聊天程序整合到我们公司的CRM系统中,虽然一切都进展到了这一点,但我遇到了障碍。 问题是当我尝试“创建一个新的聊天框”时。 我正在使用asp控件UpdatePanel和jQuery $ .ajax调用将JSON方法名称传递给我的代码隐藏文件。 这是JSON逻辑: 用户列表中的DoubleClick用户: $telerik.$(“.UserListEntry”).dblclick(function () { var ToName = $telerik.$(this).children(“.UserListEntryName”).text(); var FromName = $telerik.$(“#lkUserGeneralSettings”).text(); $telerik.$.ajax({ type: ‘POST’, url: ‘DefaultHandler.ashx’, data: { “ToName”: ToName, “FromName”: FromName }, success: CreateChatBox(), error: function (response) { alert(“error: 001”); } }); }); CreateChatBox回调: function CreateChatBox() { $telerik.$.ajax({ type: ‘POST’, url: ‘Default.aspx’, data: { […]

“价值不能为空。 参数名称:实例“尝试打开telerik报告时出错

在我的解决方案中,我有telerik报告,当尝试在Visual Studio 2010设计器中打开它们时,我收到此错误: Value cannot be null. Parameter name: instance Call Stack at System.ComponentModel.TypeDescriptor.AddAttributes(Object instance, Attribute[] attributes) at Microsoft.VisualStudio.Design.VSDesignSurface.CreateDesigner(IComponent component, Boolean rootDesigner) at System.ComponentModel.Design.DesignerHost.AddToContainerPostProcess(IComponent component, String name, IContainer containerToAddTo) at System.ComponentModel.Design.DesignerHost.PerformAdd(IComponent component, String name) at System.ComponentModel.Design.DesignerHost.System.ComponentModel.Design.IDesignerHost.CreateComponent(Type componentType, String name) at System.ComponentModel.Design.Serialization.DesignerSerializationManager.CreateInstance(Type type, ICollection arguments, String name, Boolean addToContainer) at System.ComponentModel.Design.Serialization.DesignerSerializationManager.System.ComponentModel.Design.Serialization.IDesignerSerializationManager.CreateInstance(Type type, ICollection arguments, String name, […]

在当前页面中找到一个控件

您好,我的问题是我似乎无法从当前页面找到控件。 我的页面类有以下代码: 我的控制有: Telerik:RadListBox runat=”server” CssClass=”RadListBox” ID=”listbox_action_member” Width=”125″ Height=”200px” Skin=”Telerik” OnTransferring=”ActionListBoxViewer_Transferring” OnDeleting=”ActionListBoxViewer_Deleting” > </telerik:RadListBox 从另一个控件我需要在“action_member_dropdown”中抛出信息; Control control = this.Page.FindControl(“ViewMeetingActions”); -> doesnt work Page page = HttpContext.Current.Handler as Page; Control ViewMeetingActions = page.FindControl(“ViewMeetingActions”); -> didnt work as well Page test = this.Parent.Page; -> no succes 如果我问页面我有多少控件说它有1个控件,我添加了5个以上。 简而言之,如何从其他控件中调用同一页面中的控件?

获取Telerik RadGrid的行

我正在研究RadGrid,我想访问它的行,但似乎它没有.Rows属性。 这是我到现在为止所尝试的: 如何访问rgCustomers的Rows集合? 我想为每一行添加一个按钮。

Devexpress或Telerik Controls比较

我正在考虑购买dev express或telerik以帮助开发我们的应用程序。 我们主要是一个asp.net服装,但我们开始越来越多地使用silverlight和mvc。 我想知道人们的想法: function集 便于使用 文档 定价和许可

ASP.default_aspx’不包含’IssuesGrid_OnItemUpdated’的定义,也没有扩展方法’IssuesGrid_OnItemUpdated’

我使用Telerik asp.net/ajax控件创建了一个gridview,当我在本地运行应用程序时,网格工作正常,但当推送到我的服务器时,我的所有方法都得到了相同的错误: ASP.default_aspx’ does not contain a definition for ‘IssuesGrid_OnItemUpdated’ and no extension method ‘IssuesGrid_OnItemUpdated’ accepting a first argument of type ‘ASP.default_aspx’ could be found (are you missing a using directive or an assembly reference?) 我已经尝试删除网格中的引用并再次创建它并让VS创建方法然后它将工作,直到我为所有抛出错误的方法执行该操作然后它重新开始。 这是aspx页面: 以下是我的cs文件中的方法: protected void Issues_OnItemUpdated(object sender, GridUpdatedEventArgs e) { if (e.Exception != null) { e.KeepInEditMode = true; e.ExceptionHandled = […]

引用嵌套控件

我有两个网格视图 – 一个嵌套在另一个 – 我试图以编程方式设置子网格的数据源,但我不知道如何引用它。 我试过这个: RadGrid radGridDetails = RadGridResults.FindControl(“RadGridDetails”) as RadGrid; radGridDetails.DataSource = myList.ToList(); 但是这会返回NullReferenceException。 有人可以告诉我如何实现这一目标吗?

由于对象的当前状态,操作无效。 当我选择下拉列表

我在aspx页面上有radcombo框,当我从中选择任何选项时,它会在’/’应用程序中出现错误`服务器错误。 由于对象的当前状态,操作无效。 描述:执行当前Web请求期间发生未处理的exception。 请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。 exception详细信息:System.InvalidOperationException:由于对象的当前状态,操作无效。 来源错误: 在执行当前Web请求期间生成了未处理的exception。 可以使用下面的exception堆栈跟踪来识别有关exception的起源和位置的信息。 堆栈跟踪: [InvalidOperationException:由于对象的当前状态,操作无效。 System.Web.HttpValueCollection.ThrowIfMaxHttpCollectionKeysExceeded()+2692302 System.Web.HttpValueCollection.FillFromEncodedBytes(Byte [] bytes,Encoding encoding)+61 System.Web.HttpRequest.FillInFormCollection()+ 148 [HttpException(0x80004005):URL编码的表单数据无效。] System.Web.HttpRequest.FillInFormCollection()+ 206 System.Web.HttpRequest.get_Form()+ 68 System.Web.HttpRequest.get_HasForm()+ 8735447 System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull)+97 System.Web.UI.Page.DeterminePostBackMode()+63 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,Boolean includeStagesAfterAsyncPoint)+133 版本信息:Microsoft .NET Framework版本:2.0.50727.3634; ASP.NET版本:2.0.50727.3634`

如何在服务器端关闭radwindow并刷新父页面

我想关闭RadWindow并刷新父服务器:如何执行此服务器端: 我有以下情况: 两页说: parent.aspx: 和parent.cs protected void OpenNewWindow(string url, int width, int height,int mode) { RadWindow newWindow = new RadWindow(); newWindow.NavigateUrl = url; newWindow.VisibleOnPageLoad = true; newWindow.KeepInScreenBounds = true; if (width > 0) { newWindow.Width = width; } if (height > 0) { newWindow.Height = height; } newWindow.VisibleStatusbar = false; if (mode == 0) { […]