ultrawebgrid

visibility:collapse in javascript

白昼怎懂夜的黑 提交于 2019-12-11 07:41:04
问题 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'm checking if there are any errors using javascript.so I had to use the javascript event handler:: UltraWebGrid1_BeforeRowTemplateOpenHandler(gridName, rowId, templateId)

Display rows in multiple columns in Asp.net Gridview

隐身守侯 提交于 2019-12-05 20:32:43
问题 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? 回答1: 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

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