Questions tagged [ultrawebgrid]

UltraWebGrid is an ASP.NET data grid UI component developed by Infragistics.

UltraWebGrid is an ASP.NET data grid UI component developed by Infragistics.

49 questions
15
votes
6 answers

Infragistics WebGrid vs. Telerik Grid

I have been using the Infragistics UltraWebGrids for a few years now in multiple products, but have reached a crossroads with them. I have been looking into the Telerik products and they appear to perform better than the Infragistics grids in the…
RSolberg
  • 26,821
  • 23
  • 116
  • 160
8
votes
3 answers

Display rows in multiple columns in Asp.net Gridview

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…
Malik Daud Ahmad Khokhar
  • 13,470
  • 24
  • 79
  • 81
4
votes
3 answers

UltraWebGrid: How to use a drop-down list in a column

I'm using the Infragistics grid and I'm having a difficult time using a drop-down list as the value selector for one of my columns. I tried reading the documentation but Infragistics' documentation is not so good. I've also taken a look at this…
mbillard
  • 38,386
  • 18
  • 74
  • 98
2
votes
1 answer

Custom sorting on UltraWebGrid - ASP .NET

How can I accomplish custom sorting on the Infragistics UltraWebGrid? I've tried to hadle the SortColumn event and it works, however, whenever I click the column header, the columns are sorted via JavaScript in the website before the event is fired…
Leandro Fernandez
2
votes
1 answer

Infragistics ultragrid client side event for row double click

I wanna get client side event for Row double click in Infragistics ultragrid control. A server side event handler "OnDblClick" is available, but I hope there is some way in client side also. Thanks for any help.
Amit
  • 165
  • 1
  • 5
  • 18
2
votes
1 answer

How do I access the child rows of an Infragistics Web Grid row?

I need to modify the contents of the child rows of a hierarchical Infragistics web grid when it is expanded. I can get the parent row from "e.Row" in the following code. But how do I get its child rows to edit? For that matter, how can I get the…
Baffled by ASP.NET
  • 529
  • 3
  • 12
  • 21
2
votes
1 answer

Pager visibility on infragistics ultrawebgrid

I have an infragistics ultrawebgrid v11.1 in my asp.net project and I've been asked to do away with paging on the grid. Even if I turn paging off by setting AllowPaging="false", the pager still appears, saying "jump to page 1 of 1" or something…
2
votes
3 answers

Export more than 100000 rows to Excel - Infragistics Excel exporter

I am using ultrawebgrid v11.1 with xml LoadOnDemand and paging enabled to load more than 100,000 records. I'd written BindGrid() functionality inside the InitializeDataSource event. In every postback(Save,ExcelExport,Load..) and/or partial…
Estefany Velez
  • 328
  • 4
  • 18
1
vote
2 answers

How to insert data in Infragistics UltraWebGrid via InsertDBRow

I'd like to add rows to an UltraWebGrid directly on the grid, which is connected to an ObjectDataSource. According to the documentation, I'm supposed to use the InsertDBRow method (there are also UpdateDBRow and DeleteDBRow) to handle database…
julio.g
  • 3,268
  • 5
  • 28
  • 25
1
vote
4 answers

visibility:collapse in javascript

I'm using Ultrawebgrid for my applcation: I'm using a textarea for listing the errors in my application in the row template when the user clicks that particular row... So I need to have texarea when there are any errors..... otherwise when there…
stack_pointer is EXTINCT
  • 2,263
  • 12
  • 49
  • 59
1
vote
1 answer

Infragistics UltraWebGrid Tree Multilingual

When handling the Infragistics UltraWebGrid Tree view with ClientSideEvents CellClickHandler="uwt_CellClickHandler" it gives a client side error while changing the UI language to "French" . "Method cannot be found , check method name error " is…
Satish
  • 21
  • 6
1
vote
2 answers

How to find rows n the dataset (with no primary key)

I using the Ultrawebgrid- Update event:: protected void UltraWebGrid1_UpdateRow(object sender, RowEventArgs e) so, I want to update the row(updated in the grid) in the datatable (inside a dataset) The datatable doesn't hav any primary key…
stack_pointer is EXTINCT
  • 2,263
  • 12
  • 49
  • 59
1
vote
1 answer

Apperance of runtime Infragistics UltraWebGrid different than in ultrawebgrid designer

!I'm trying to get an Infragistics UltraWebGrid to work with one of the Styles provided by Infragistics (Office2007Blue). My problem is that the grid looks nice at design time (image1) ... but bad (and very different) at runtime (image 2). The odd…
Simen S
  • 3,210
  • 18
  • 24
1
vote
1 answer

Infragistics -- UltraWebGrid, data binding

DataSet ds = new DataSet(); int x = ddlSelectedValue.IndexOf('-'); if (x > -1) ds = Selections.GetUnlinkedAccounts(clientID, AccountNo); else ds = Selections.GetAccountBasedAnnuity(clientID,…
CoderUnknown
  • 103
  • 3
  • 15
1
vote
1 answer

Infragistics UltraWebGrid upgrade from v7.2 to v14.1

I'm upgrading an old web application to use Infragistics v14.1 from v7.2, but it appears that the Infragistics.WebUI.UltraWebGrid component is no longer there. Has the UltraWebGrid moved into a different library, replaced by something else, or…
landers
  • 105
  • 9
1
2 3 4