infragistics

Adding a checkbox column to the infragistics ultrawingrid that is bind to a datasource

此生再无相见时 提交于 2019-12-04 19:36:23
I am trying to add a new checkbox column to the ultrawingrid that is binding to a dataset, when ever I add a new column it says key not found, any ideas on how to fix it, Thank you... Below is the code private void grdPayVis_InitializeLayout(object sender, InitializeLayoutEventArgs e) { var gridBand = grdPayVis.DisplayLayout.Bands[0]; gridBand.Columns["Select"].Header.Caption = "Select"; gridBand.Columns["Select"].Header.Appearance.TextHAlign = HAlign.Center; gridBand.Columns["Select"].Header.VisiblePosition = 0; gridBand.Columns["Select"].Hidden = false; gridBand.Columns["Select"].Style =

True MVVM and third party controls

天涯浪子 提交于 2019-12-04 08:26:45
In a True MVVM model we do not expect any code behind in xaml.cs also we do not expect viewModel to have refernece of view. However all third party controls do not provide good support for True MVVM. In my case I am using Infragistics xamDatagrid control and I want to export its data to excel. The only way I can export data to excel of data grid is by using following code: xamDataGridExcelExporter.xamDataGridExcelExporter xamDataGridExcelExporter1 = new xamDataGridExcelExporter.xamDataGridExcelExporter(); xamDataGridExcelExporter1.Export(**this.xamDataGrid1**, @"C:\Excel\ExportFile.xls");

GIF Animation not working in Windows Form

隐身守侯 提交于 2019-12-04 07:10:25
I have 2 WinForms Form2 uses Infragistics ultraTabControl. On Tab Changing im Showing Form1. In Form1 I have a PictureBox assigned with animated GIF In Form2 I am displaying Form1 like this. Form1 frmOne=new Form1(); frmOne.Show(); Problem GIF is not playing animation. Make sure you have your image in the image property NOT THE BACKGROUND IMAGE PROPERTY . That's the mistake I made Niranjan Singh It is working fine for me. I have just dragged a new pictureBox on form and setting image property at Form_Load() event and showing GIF animated. I did same as you on button click: TestForms.NavBarTest

Controls on WinForm not modifiable in Designer

妖精的绣舞 提交于 2019-12-04 06:46:17
I've inherited a project that has been modified in a way that is beyond me to undo. Every single control on the form is not modifiable in the designer except through the Properties window and each control has an icon in the area below (see image) in the section usually reserved for non-visible items (e.g. DataSource). How do I undo this and return the designer to a usable version without wiping it all out and starting over? Could the controls be locked? I have run into legacy code in which the programmers have locked every single control, meaning you cannot move or resize them in the designer.

What is 'eating' my uploadFile before my POST servlet can process it?

◇◆丶佛笑我妖孽 提交于 2019-12-04 05:28:48
问题 I'm using Infragistics IgniteUI igUpload on my webpage to upload files to our Apache Tomcat server, and while the files are uploaded, I can't get access to them in my servlet code. Maybe someone here has an idea of whats happening. When igUpload sends the file through Ajax, I see a nicely formed POST request with Headers : Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding gzip, deflate Accept-Language en-US,en;q=0.5 Content-Length 24804 Content-Type

Display rows in multiple columns in Asp.net Gridview

时光总嘲笑我的痴心妄想 提交于 2019-12-04 03:39:25
By default each row of a Gridview maps to each row in a datatable or dataset attached to its datasource. But what if I want to display these rows in multiple columns. For example if it has 10 rows, 5 rows each should be displayed in 2 columns side by side. Also can I do this with the Infragistics grid. Is this possible? Serhat Ozgel You can use a DataList control instead. It has a RepeatColumns property that you can define the number of columns you want to display. In .NET Framework 3.5, there is an even better solution, the ListView control. You can find further information about how to use

Infragistics components on build server

泪湿孤枕 提交于 2019-12-03 07:03:17
问题 I have "inherited" a new (old?) Winforms project and would like to put it onto our build server (Bamboo). That build server has only the absolute minimum (.NET 3.5 and not much more) installed, and we'd like to keep it that way. As a first step, I extracted all the assembly files (*.dll) for the Infragistics components into a separate directory and referenced them from that local directory (instead of relying on them being installed in the GAC). Works OK. But when I try to run this build on

What 3rd Party Controls are .Net Developers using [closed]

懵懂的女人 提交于 2019-12-02 19:19:16
I am re-evaluating my 3rd party controls. I currently use the Infragistics tools suite for ASP.Net and WinForms. What controls do you use and would you recommend them? Telerik is fairly prolific and easy to use on the asp.net side. Although you will find yourself hacking some functionality in and out of them and then having a code change everytime an update breaks your hacks.. regardless they are still easier than re-inventing the wheel. I prefer DevExpress . Its components somehow seem more intuitive to me than Infragistic's. DevExpress stuff, all the way. A great side-effect of grabbing one

Standard formatting Vs Custom formatting in UltragridCells

谁说我不能喝 提交于 2019-12-02 14:14:47
问题 I'm trying to format a Ultragridcell using the following code and it works fine. //Code DefaultEditorOwnerSettings editorSettings; DateTimeEditor datetime_editor; editorSettings = new DefaultEditorOwnerSettings() editorSettings.DataType = typeof(DateTime); editorSettings.MaskInput = "mm/dd/yyyy"; datetime_editor = new DateTimeEditor(new DefaultEditorOwner(editorSettings)); e.Row.Cells["DateInfo"].Editor = datetime_editor; But when I try to format like the below code, it fails. //Code

What is 'eating' my uploadFile before my POST servlet can process it?

无人久伴 提交于 2019-12-02 07:01:06
I'm using Infragistics IgniteUI igUpload on my webpage to upload files to our Apache Tomcat server, and while the files are uploaded, I can't get access to them in my servlet code. Maybe someone here has an idea of whats happening. When igUpload sends the file through Ajax, I see a nicely formed POST request with Headers : Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding gzip, deflate Accept-Language en-US,en;q=0.5 Content-Length 24804 Content-Type multipart/form-data; boundary=---------------------------91823184012919 Cookie JSESSIONID