首页 > TAG信息列表 > infragistics

首页> C#> UltraWebGrid的:如何在列中使用下拉列表

我正在使用Infragistics网格,并且在使用下拉列表作为我的其中一列的值选择器时遇到了困难. 我尝试阅读文档,但是Infragistics的文档不是很好.我也看过这个discussion,没有运气. 到目前为止,我在做什么: col.Type = ColumnType.DropDownList; col.DataType = "System.String"; col.

javascript-单击按钮保存客户端生成的图像

我有一个IgniteUI igDataChart,我想将它作为映像保存到磁盘.您无法右键单击图表并保存图像,因为它使用了多个画布.图表确实具有export image方法,该方法将获取整个图表图像并将其返回到javascript变量中. 单击后,我想自动将此文件保存到用户的下载文件夹中.如果这是服务器端映像,我

C#-Infragistics XamDatagrid列从左到右调整大小

我使用XamDataGrid来显示带有非常长的标题名称的表.标头名称中最重要的部分是后缀. 有什么方法可以配置列标题,即当列宽短于文本大小时,我会看到后缀作为标题吗? 例: 所需结果: [...SUFFIX1][...SUFFIX2] 代替默认行为,我有: [Prefix....][Prefix....] 解决方法:一种方法是为LabelP

如何将所选项目绑定到具有Infragistics XamDataGrid的模型?

我有以下模型: public class Model : INotifyPropertyChanged { public ObservableCollection<ViewElement> Elements { get; set; } public ViewElement CurrentElement { get; set; } } 以及以下网格,其中父DataContext是上述模型: <dg:XamDataGrid DataSource="{Binding

c#-在Odata Controller中基于ImageKey将图像加载到igGrid列中

我已经建立了这个模型: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; namespace aSa.Web.Scheduling.Models { public class Trailer { [Key] public int Trail

c#-使用DevExpress或Infragistics将HTML或PDF转换为RTF / DOC或HTML / PDF转换为图像

有一种方法可以使用DevExpress或Infragistics将HTML或PDF转换为RTF / DOC或HTML / PDF转换为图像? 我使用DevExpress尝试过此操作: string html = new StreamReader(Server.MapPath(@".\teste.htm")).ReadToEnd(); RichEditControl richEditControl = new RichEditCont

javascript-如何在IgGrid细胞中获得正则表达(Infragistics)?

在igGrid更新中,如何在igTextEditor上使用正则表达式? 我试图使用验证选项,但没有成功. $("#schedulerTable").igGrid({ columns: $scope.schedulerColumns, width: "87%", height: "300px", fixedHeaders: true,

c – MSAA UI自动化get_accChildCount在Winforms中为Infragistics UltraTree错误地返回0

在C#Winforms应用程序中自动化Infragistics UltraTree控件时,我发现UltraTree实现了AccessibleObject模型(MSAA).通过将hwnd从间谍中抓出来,我能够成功地获取IAccessible接口 IAccessible* accessibleObject; AccessibleObjectFromWindow(hwnd, OBJID_CLIENT, IID_IAccessible, (v

javascript – 最初折叠所有节点Infragistics IgTree

我使用以下Infragistics组件来查看分层数据. http://www.igniteui.com/tree/drag-and-drop-single-tree 我已经初始化了如下所示的树视图,以查看最初扩展的树的所有节点.有人可以建议我,如果我错过任何选项显示最初折叠的所有节点? $("#tree").igTree({ check

c# – 如何将绑定到集合类的列呈现为Infragistics UltraWinGrid中的子行?

我有一个绑定到DataSet的UltraWinGrid,其中有几列本身就是集合类类型,如下所示: [Name] - string [Description] - string [Components] = List<Component> [Levels] = List<Level> 目前,这两个字段在绑定到数据网格时是隐藏列,用于确定绑定表单上其他两个数据网格的数据. 为了提

c# – 来自SQL服务器数据的xamGeographicMap形状

使用Infragistics xamGeographicMap控件,尝试从SQL Server几何数据中添加形状. >数据有效; SSMS中的选择正确显示形状 >查询SP_GEOMETRY时可以正确显示点(参见示例) – 所以GeographicSymbolSeries可以工作,形状列包含实际数据> GeographicShapeSeries不起作用> GeographicPolyLine

c# – Infragistics Ultragrid – Combobox作为专栏

我对Infragistics的UltraGrid控件有疑问.我创建了一个带有一些值的ultracombobox: UltraCombo ultraComboPaneel = new UltraCombo(); ultraComboPaneel.DataSource = articleList; ultraComboPaneel.ValueMember = "ArticleID"; ultraComboPaneel.Displa

c# – Ultra Numeric Editor仅设置默认值为2位小数

如何使用UltraNumericEditor.MaskInput输入最多10个或更多小数位的输入?解决方法:问题是更多的小数位,因为MaskInput属性需要您要键入的确切小数位数. 所以,如果你想要达到最多10位小数,你可以写 numEditor.NumericType = NumericType.Decimal numEditor.MaskInput = "{LOC}n.nnnnn