Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
92 views

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.

 

ali
Top achievements
Rank 1
 asked on 15 Feb 2017
3 answers
712 views
I want only some of columns to be editable in my RadGrid. I have GridEditCommandColumn, GridBoundColumns (for them I dont want to be editable) and GridTemplateColumns (they need to be editable). Is that possible and how?
Gowtama Krishna
Top achievements
Rank 1
 answered on 14 Feb 2017
5 answers
197 views
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>
KidSysco
Top achievements
Rank 1
 answered on 14 Feb 2017
1 answer
301 views
Such as title.
Rumen
Telerik team
 answered on 14 Feb 2017
3 answers
166 views

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

  • After an upload – You are trying to navigate to a non-existing folder or you do not have proper permissions…
  • After I try the Image Edit - ImageEditor_Common_MessageCannotWriteToFolder
  • After I try to Delete – The selected file could not be deleted because the application did not have enough permissions.

 Any hints would be greatly appreciated.

'set imagemanager paths
Dim 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 = imageFilters
ctlDescription.ImageManager.ViewPaths = imagePath
ctlDescription.ImageManager.UploadPaths = imagePath
ctlDescription.ImageManager.DeletePaths = imagePath

Vessy
Telerik team
 answered on 14 Feb 2017
0 answers
143 views

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)

 

John
Top achievements
Rank 1
 asked on 14 Feb 2017
2 answers
359 views

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


 

Eyup
Telerik team
 answered on 14 Feb 2017
0 answers
109 views

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.

L
Top achievements
Rank 1
 asked on 14 Feb 2017
0 answers
97 views

 

Like picture, how to change?

wang
Top achievements
Rank 1
 asked on 14 Feb 2017
0 answers
81 views

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?

 

 

 

Greg
Top achievements
Rank 1
 asked on 13 Feb 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?