Which I have had fun using to customize the grid by adding attributes. In the output I see:
<colgroup>
<col />
<col />
<col />
<col />
<col />
</colgroup>
But there appears to be no associated item that I may use to add attributes to these items, i,e,
| void grid_ItemCreated(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridColGroupItem) |
| { |
| GridColGroupItem headItem = e.Item as GridColGroupItem; |
| <telerik:GridBoundColumn DataField = "PRICE" |
| HeaderText = "PRICE" |
| HeaderTooltip = "AMDF Price of new item" |
| DataType="System.Int32" |
| EmptyDataText="No Data" |
| FilterListOptions="VaryByDataType" |
| FilterImageToolTip="Use numbers only with filter!" |
| ItemStyle-HorizontalAlign = "Right" |
| EditFormColumnIndex = "2" |
| UniqueName = "price" |
| DataFormatString = "{0:c0}"> |
| </telerik:GridBoundColumn> |
| A Runtime Error has occurred. |
| Line 6 |
| Error:Sys.Webforms.PageRequestManagerServerErrorException: |
| Specified cast is not valid. |
| /* START MicrosoftAjax.js */ |
| //---------------------------------------------------------- |
| // Copyright (C) Microsoft Corporation. All rights reserved. |
| //---------------------------------------------------------- |
| // MicrosoftAjax.js |
| Function.__typeName="Function";Function.__class=true;Function.createCallback=function(b,a){return function(){ |
| // 60,000 characters of code |
| } |
| Assertion Failed: {0}","invalidOperation":"Operation is not valid due to the current state of the object.","breakIntoDebugger":"{0}\r\n\r\nBreak into debugger?"}; |
| /* END MicrosoftAjax.js */ |
Ok I am having some very odd behavior.
For one when running a site wiht telerik controls in firefox I don't get the skin, and none of my buttons that cause a rad window to pop up work. They work finr in IE.
The other issue is in IE everything works great untill you hit the refresh button. If you hit the refresh button you get the same behavior as Firefox, rad windows won't work, don't get skins. But if you expand or collapse a grid group you get th eskins and the rad windows work again. but instead of having the nice clean url
http://gofilepointtest.fairviewinvest.com/chesapeake
you get
http://gofilepointtest.fairviewinvest.com/documentlist.aspx?fund=chesapeake
Everything works fine with out using the rewrite.
More info when I hit the error in ie I get 'Sys' is undefined
don't seem to get an error in firefox

Hello.
I have a problem with a view and openaccess, i have 3 fields to return for build a multicolumn radcombobox, in the examples for create multicolumn radcombo typed the following:
e.Item.Text = (DirectCast(e.Item.DataItem, DataRowView))("Field1").ToString() + _
"; " + (DirectCast(e.Item.DataItem, DataRowView))("Field2").ToString() + _
"; " + (DirectCast(e.Item.DataItem, DataRowView))("Field3").ToString()
Now to create a RadCombo with OpenAccess I've typed the following,
e.Item.Text = (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field1).ToString() + _
" - " + (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field2).ToString() + _
" - " + (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field3).ToString()
and the problem is that when I run the form displays all records repeated with data from the last returned in the query, the number of records that is well add, delete and the number of records is OK, but the description is the only is the last record that casts the query OpenAccess.
As if to create the records only reads the last record is of the number of records resulting in the query.
thanks for the Colaboration
Alex Alfonso
Bogotá - Colombia