Hi,
I have a radPivotGrid, when i am running it on my local pc and on web server it is working fine.
But on mobile and some other device it is showing grid on half page.
Hello, I have an issue with radgrid static headers runing on IE compatibility mode, any solution?
<telerik:RadGrid ID="RadGrid1" OnNeedDataSource="RadGrid1_NeedDataSource" AutoGenerateColumns="false" runat="server"> <ClientSettings> <Scrolling AllowScroll="true" ScrollHeight="500" UseStaticHeaders="true" /> </ClientSettings> <MasterTableView TableLayout="Fixed" runat="server"> <GroupByExpressions> <telerik:GridGroupByExpression> <GroupByFields> <telerik:GridGroupByField FieldName="IdProvincia" /> </GroupByFields> <SelectFields> <telerik:GridGroupByField FieldName="Provincia" /> </SelectFields> </telerik:GridGroupByExpression> </GroupByExpressions> <Columns> <telerik:GridBoundColumn DataField="Airport" HeaderText="Provincia" ItemStyle-Width="100px" HeaderStyle-Width="100px"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LAT" HeaderText="LAT" ItemStyle-Width="100px" HeaderStyle-Width="100px"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LNG" HeaderText="LNG" ItemStyle-Width="100px" HeaderStyle-Width="100px"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LAT" HeaderText="LAT" ItemStyle-Width="100px" HeaderStyle-Width="100px"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LNG" HeaderText="LNG" ItemStyle-Width="100px" HeaderStyle-Width="100px"></telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>
I think I'm missing something obvious, but I surrender. I have an editor with the image manager tool enabled. Below is my code behind code setting it all up, you can see that I create the directory if it is not there. The image uploads successfully and is in the right directory. However I am getting these three errors
Any hints would be greatly appreciated.
'set imagemanager pathsDim sImage As String = SSG.BYOC.Shared.Resource.GetClassroomSaveToFilePath(AppConfig.ClassroomFileUploadRoot, ClassID)Dim sImagePath As String = Server.MapPath(sImage)Dim imagePath As String() = New String() {sImage}' Dim imageFilters As String() = New String() {"gif", "jpg", "jpeg", "png"}If Directory.Exists(sImagePath) = False Then Directory.CreateDirectory(sImagePath)End If'ctlDescription.ImageManager.SearchPatterns = imageFiltersctlDescription.ImageManager.ViewPaths = imagePathctlDescription.ImageManager.UploadPaths = imagePathctlDescription.ImageManager.DeletePaths = imagePath
when creating groups dynamically to a grid with template columns, the application is throwing an unhandled exception error if the groupbe by column holds null values. If the underlying data source is modified to replace null values with "" then the grid functions fine. The way its to behave the columns to be grouped by can change so I need a way to handle nulls in the application code. Does anyone have a solution for this?
Dim ex As New GridGroupByExpression()
For Each dRow As DataRow In objDS.Tables(2).Rows
Dim field1 As New GridGroupByField()
field1.FieldName = dRow("Column_Name")
field1.HeaderText = dRow("display_name")
field1.SortOrder = dRow("Sort_Order")
ex.GroupByFields.Add(field1)
ex.SelectFields.Add(field1)
Next
EditGrid.MasterTableView.GroupByExpressions.Add(ex)
I've searched the forums with no luck.
What I need to do is send an email with the ID of the newly inserted items ID that is generated from SQL(isIdentity)
I was assuming that I could get this info from RadGrid1_ItemInserted but no luck.
Dim editformItem As GridEditFormInsertItem = DirectCast(e.Item, GridEditFormInsertItem)
Dim test As String = editformItem.Item("Task_Id").Text
-DataKeyNames="Task_Id"
I need the id of the inserted item.
Can someone please help.
Thank you

hi
I have an item "Billing & Orders" in the item text and is giving me an error that is caused by "&". When i changed to "Billing and Orders", it works fine. Is there a way to have an "&" in the item text instead of "and"? Thanks a lot.
Not sure whether to use a RadGrid or some other solution here...
I have a database table with x, y coordinate, and a content field.
I want to plot the content in a grid according to the x,y and knowing the size of the total grid, ie 12x6, or 20x10, etc...
Some cells may be empty (no row in the table).
Suggestions?