ultrawebgrid

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 discussion with no luck. What I'm doing so far: col.Type = ColumnType.DropDownList; col.Dat...

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 by side. Also can I do this with the Infragistics grid. Is this possible? ...

Infragistics UltraWebGrid - Footer Totals

I am currently using the UltraWebGrid control of Infragistics and I am displaying the sum of values of a column in the footer. The problem is that, since I am using paging, the total displayed in the footer is being calculated by the values of the current page only, but I want the sum of all the elements in the source, not just the c...

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 rows from any band other than band 0? protected void CustomerActivitiesGrid_ExpandRow(objec...

UltraWebGrid - How to expand the last row

I have a Infragistics UltraWebGrid that implements expanding rows. The functionality works perfectly unless the row is the last one, in which case the expanded part is hidden. Is there a way to change expand direction? Shift the other rows up? Anything to show the expanded row. ...

Which Event Should I Use to Add a Row to an Infragistics UltraWebGrid?

I'm using Infragistics Ultrawebgrid in my application I have a button called validate:: i need to add new rows to the Ultrawebgrid using <> and when the 'validate' button is clicked i need to perform some validations based on the data entered. in Which event in can incorporate the code. Right now i have events like:: **protected void...

Infragistics ultrawebgrid custom paging

Hi iam using infragistics ultarawebgrid in my appliccation when i use custompaging iam not able to retrive the specified no of records per page the code i written is string[] cusLabel; in the grid initialise grid.DisplayLayout.Pager.AllowCustomPaging = true; grid.DisplayLayout.Pager.AllowPaging = true; grid.DisplayLayout.Pager.StyleM...

grid selected row

Hi iam using infragistics ultrawebgrid in this how to get the selected row index in the button click event ...

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

Hi, 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 too.. How can i find any row in such datatable? for e.g. i can go for UltraGridRow oldr...

ASP.net controls moving left and right in the web page when ultrawebgrid is clicked

Hi, I'm using certain DropDowns, Buttons and Ultrawebgrid in my application. After the application is run, in the webpage, the controls i.e. Dropdowns and buttons especially are moving left and right as and when i'm clicking the cells in Ultrawebgrid. What could be the reason for this as i'm really exclaimed about this.... what coul...

visibility:collapse in javascript

Hi, 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 are no errors i dont even want the row_template to pop up..... I'm using IE6. I'...

Adding a new row (with a templated column) to an Infragistics UltraWebGrid

I am using the Infragistics UltraWebGrid to capture some data. I don't have this grid bound to a datasource, I simply access the values I need when the user clicks a save button. I need to add autocomplete functionality to one of the columns in this grid, easily achieved with an asp.net textbox and ajaxtoolkit autocomplete extender. Pr...

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 persistence. Does anyone has any example on what's the supposed usage of these methods? (I alr...

Infragistics + MooTools + MooFlow gallery + IE

Hi everybody. In my current project (asp.net with vb.net), customer wants to use Infragistics UltraWebGrid and MooFlow gallery (MooTools). I faced with problem that MooFlow is not working when it's on the same page with UltraWebGrid in IE (v. 7 and 8), in FF it works fine. It seems like Infragistics not allow MooFlow use inherited metho...

ultrawebgrid dropdown column issue

hi i have added the drop down list to the ultra web grid column and saved the value selected in the drop down to the database and when i try to retrieve the data and display the data its showing the value of the dropdown not the text e.g. 4001 - sales it is showing 4001 not sales i want to show the sales text in the drop down how to ac...

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 in the server side? How do I stop the grid from sorting in the client? Thanks, Leandro F...

Adding a filter dropdown to an Infragistics Ultrawebgrid

How do I add a filter dropdown that allows multiple selections to an Infragistics Ultrawebgrid column? ...

Infragistics UltraWebGrid having problems with Sorting and Paging

I'm binding an UltraWebGrid to a custom DataSourceControl that gets information from a database. On a page the UltraWebGrid requests data from my control before the paging takes place and then again after the paging takes place. The first request has the correct sort expression, but the incorrect page. The second has the correct page, b...

Bind Infragistics UltraWebGrid with Hierachical view to collection of objects

I have a list of entities that i want to bind to my UltraWebGrid. The Class definition of the entity has the following structure public class Parent { public Guid Id { get; set; } public String Name { get; set; } public IList<Child> Children { get; private set; } } public class Child { public Guid Id { get; set; } public Guid ...

ultraWebGrid by infragistics doesn't render on page load

Hi There, I am using ultraWebGrid control and binding the data on page load. The grid is inside a ultraWebGroup, and webGroup is inside a ultraWebPanel. On page_load, the ultraWebGrid doesn't render on the page. It renders and goes off like a flash. If I re-size the IE browser, the control appears on the screen. Is there any work around...