Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
151 views

I can not open / expand my submenu with Nexus 5. Nothing happens when I click.

With all other mobiles it expands?

Peter Milchev
Telerik team
 answered on 20 Jun 2017
0 answers
131 views

Hi,

I want create my own telerik skin, but i can't find the source code of Default Skin. I try the ThemeBuilder but it's not enough complete.

I have saw the topic "Telerik Skin Exchange Program", so I know it's possible.

Where could I find them ?

Thank

Jérémy
Top achievements
Rank 1
 asked on 20 Jun 2017
1 answer
98 views

Hi,

I am trying to apply filter by implementing filter template. I have a radcombobox that filters the radgrid. 

a) Datasource for the radgrid is a dataset defined in aspx.vb. There are 2 tables in the dataset
b) Radcombobox datasource is a datatable from the above dataset defined in aspx.vb.
c) Trying to rebind the radgrid after the radcombobox selection both in code behind and on aspx via JS.

1) using the following lines in cmbStateSelectedIndexChanged event does not rebind the grid

<code style="color: #000;">gv_MainStatusDynamic.MasterTableView.FilterExpression = e.Value<</code><code style="color: #069;font-weight: bold;">br</code><code style="color: #000;">>  filterItem.FireCommandEvent("Filter", New Pair("Contains", e.Value))<</code><code style="color: #069;font-weight: bold;">br</code><code style="color: #000;">>  gv_MainStatusDynamic.Rebind()</code>

2) using FilterExpression in radgrid prerender does not rebind the grid

If isFiltered Then<br>            If rg_dynamic.MasterTableView.FilterExpression <> "0" Then<br>            Dim filterItem As GridFilteringItem = TryCast(TryCast(sender, RadComboBox).NamingContainer, GridFilteringItem)<br>            Dim aCombo As RadComboBox = TryCast(filterItem.FindControl("cmbState"), RadComboBox)<br>            rg_dynamic.MasterTableView.FilterExpression = Session("StateVal")<br>            rg_dynamic.MasterTableView.Rebind()<br>            End If<br>        End If

3) using filtering in aspx page does not rebind grid.

<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server"><br>                                           <script type="text/javascript"><br>                                               function SelectedIndexChanged(sender, args)<br>                                               {<br>                                                   var tableView = $find("<%# TryCast(Container, GridItem).OwnerTableView.ClientID %>");<br>                                                   tableView.filter("State", args.get_item().get_value(), "EqualTo");<br>                                               }<br>                                           </script><br>                                       </telerik:RadScriptBlock>

In my first and second cases after I select a state and I do rg_dynamic.MasterTableView.Rebind(), the cmbState will not hold the selected value.
In my third case applying just that code to filter the grid on aspx side (that is commenting filter expression code in grid prerender and combobox selected index changed server side events) will hold the selected value. 
I have the datasource available for both grid and combox box on my server side. The grid will not rebind post filtered value. I came across an example on your forum pages http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultcs.aspx
But it is not helping me. 

 

I have tried to select from dataset and apply the expression to rebind the grid inside the grid pre-render event. Not sure if I am doing this right. 
In the combo selected index changed event I am saving the text(name of the state) to session variable instead of stateCompID as I was doing it earlier. But the grid still does not rebind. 

Dim SprocData As DataSet = GetData()<br>                Dim items = (From p In SprocData.Tables(0).AsEnumerable()<br>                Select New With {.ID = p.Field(Of Integer)("StateCompID"),<br>                                .Name = p.Field(Of String)("State")}).ToList()<br>                Dim filtered = items.Where(Function(x) x.Name.Contains(Session("StateVal"))).ToList()<br>                gv_MainStatusDynamic.MasterTableView.FilterExpression = filtered.ToString<br>                gv_MainStatusDynamic.MasterTableView.Rebind()

 

Any help on this is appreciated.

Thanks

Here is my aspx.vb

Protected Sub rg_dynamic_NeedDataSource(sender As Object, e As GridNeedDataSourceEventArgs) Handles rg_dynamic.NeedDataSource<br>        rg_dynamic.DataSource = GetData()<br>    End Sub<br> <br> Private Function GetData() As DataSet<br>        Using oConn As SqlConnection = New SqlConnection(GenConn())<br>       End Using<br>    End Function<br> <br> Protected Sub rg_dynamic_ItemCreated(sender As Object, e As GridItemEventArgs) Handles rg_dynamic.ItemCreated<br>        If TypeOf e.Item Is GridFilteringItem Then<br>            Dim filterItem As GridFilteringItem = DirectCast(e.Item, GridFilteringItem)<br>            Dim cmbState As RadComboBox = DirectCast(filterItem("State").FindControl("cmbState"), RadComboBox)<br>            cmbState.SelectedValue = e.Item.OwnerTableView.GetColumn("State").CurrentFilterValue<br>            RefreshStateCombo(cmbState) <br>        End If<br>    End Sub<br> <br>  Protected Sub RefreshStateCombo(ByVal stCombo As RadComboBox)<br>        Dim SprocData As DataSet = GetData()<br>        Dim oDbDS As New DataBaseUtils2<br>        Dim StateDate As DataView = SprocData.Tables(0).DefaultView<br>        Dim dtStatedata As DataTable = StateDate.Table()<br>        stCombo.DataSource = StateDate<br>        stCombo.DataTextField = dtStatedata.Columns(1).ToString() <br>        stCombo.DataValueField = dtStatedata.Columns(0).ToString()  <br>    End Sub<br> <br> <br> Protected Sub rg_dynamic_PreRender(sender As Object, e As EventArgs) Handles rg_dynamic.PreRender<br>        If isFiltered Then<br>            If rg_dynamic.MasterTableView.FilterExpression <> "0" Then<br>            Dim filterItem As GridFilteringItem = TryCast(TryCast(sender, RadComboBox).NamingContainer, GridFilteringItem)<br>            Dim aCombo As RadComboBox = TryCast(filterItem.FindControl("cmbState"), RadComboBox)<br>            rg_dynamic.MasterTableView.FilterExpression = Session("StateVal")<br>            rg_dynamic.MasterTableView.Rebind()<br>            End If<br>        End If<br>    End Sub<br> <br>  Private isFiltered As Boolean = false<br>  Protected Sub cmbStateSelectedIndexChanged(sender As Object, e As RadComboBoxSelectedIndexChangedEventArgs) <br>        If e.Value <> "0" Then<br>            isFiltered = True<br>            Session("StateVal") = e.Value<br>        End If<br>       'Dim filterItem As GridFilteringItem = TryCast(TryCast(sender, RadComboBox).NamingContainer, GridFilteringItem)<br>        'filterItem.OwnerTableView.GetColumn("StateCompID").CurrentFilterValue = e.Value ''CAPTURE THIS VALUE in a property<br>        'rg_dynamic.MasterTableView.FilterExpression = e.Value<br>        'filterItem.FireCommandEvent("Filter", New Pair("EqualTo", e.Value))<br>        ' rg_dynamic.Rebind()<br>    End Sub

 

Here is my aspx

<Telerik:Radgrid ID="rg_dynamic" runat="server" DataKeyNames="StateCompID" EnableLinqExpressions="false" <br>                            BorderStyle="Solid" CellSpacing="0" BorderWidth="1px" AllowAutomaticDeletes="false" AllowMultiRowSelection="false"<br>                        AllowAutomaticInserts="false" AllowAutomaticUpdates="false" AutoGenerateColumns="False" AllowFilteringByColumn="true"<br>                            AllowSorting="True" GridLines="None" AllowPaging="false" Width="100%" MasterTableView-EnableColumnsViewState="false"><br>                            <br>                           <MasterTableView ><br>                            <Columns><br>                            <br>                                <telerik:GridBoundColumn DataField="StateCompID" Visible="False"  HeaderText="StateCompID" <br>                                    ItemStyle-HorizontalAlign="Left" ReadOnly="True" UniqueName="StateCompID" <br>                                    SortExpression="StateCompID"> </telerik:GridBoundColumn><br>                                <br>                         <br>                                <telerik:GridBoundColumn DataField="State" HeaderText="State" SortExpression="State" HeaderStyle-Width="175" UniqueName="State" AllowFiltering="true" AutoPostBackOnFilter="true"><br>                                   <FilterTemplate><br>                                        <telerik:RadComboBox RenderMode="Lightweight" ID="cmbState" AutoPostBack="true" AutoPostBackOnFilter="true" <br>                                            Width="200px" AppendDataBoundItems="true" SelectedValue='<%# TryCast(Container, GridItem).OwnerTableView.GetColumn("State").CurrentFilterValue%>'<br>                                            runat="server" OnClientSelectedIndexChanged="SelectedIndexChanged" OnSelectedIndexChanged="cmbStateSelectedIndexChanged" ><br>                                            <Items><br>                                                <telerik:RadComboBoxItem Text="All" Value="0" /><br>                                            </Items><br>                                        </telerik:RadComboBox><br>                                       <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server"><br>                                           <script type="text/javascript"><br>                                               function SelectedIndexChanged(sender, args)<br>                                               {<br>                                                   var tableView = $find("<%# TryCast(Container, GridItem).OwnerTableView.ClientID %>");<br>                                                   tableView.filter("State", args.get_item().get_value(), "EqualTo");<br>                                               }<br>                                           </script><br>                                       </telerik:RadScriptBlock><br>                                    </FilterTemplate><br>                                </telerik:GridBoundColumn><br>                                <telerik:GridBoundColumn DataField="Company" HeaderText="Company Type" ReadOnly="True" SortExpression="Company" UniqueName="Company"<br>                                    ItemStyle-HorizontalAlign="Center"  AllowFiltering="false" ShowFilterIcon="false"><br>                                    <br>                                </telerik:GridBoundColumn><br>                            </Columns><br>                               </MasterTableView><br>                            <HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"><br>                        </HeaderContextMenu><br>                        <br> </Telerik:Radgrid>

 

 

Eyup
Telerik team
 answered on 20 Jun 2017
1 answer
522 views

I am trying to use the RadAsyncUpload to upload a file, the file does get uploaded but it is uploaded as soon as it is selected and the OnFileUploaded event is never fired.  I have tried everything in the following links and none have worked: link1link2link3link4.  The .aspx file is quite large and so I will try to give all the important information without showing all lines of html.  The uploader is in a radpane whose visibility is set to false until the user makes a selection, that radpane is nested within mutiple radpanes and splitters, all of which are inside an asp Panel.  I am using the RadAjaxManager as well and I have added the uploader, panel and the postback trigger button to in an attempt to make it work.  Not sure if this will make a difference but the uploader is also not uploading to the TargetFolder.

Here is the requestStart function to cause the postback (I do have the ClientEvents OnRequestStart in the ajaxManager):

<telerik:RadCodeBlock ID="rcb1" runat="server">
            <script type="text/javascript">
 
                function requestStart(target, arguments) {
                    if (arguments.get_eventTarget().indexOf("btnUpload") > -1) {
                        arguments.set_enableAjax(false);
                    }
                    if (arguments.get_eventTarget().indexOf("rauFile") > -1) {
                        arguments.set_enableAjax(false);
                        arguments.set_cancel(true);
                    }
                }
            </script>
        </telerik:RadCodeBlock>

Here is the html for the radasyncupload and the postbacktrigger button:

<telerik:RadAsyncUpload ID="rauFile" runat="server" AllowedFileExtensions=".xls, .xlsx" HideFileInput="true" PostbackTriggers="btnUpload" MaxFileInputsCount="1" OnFileUploaded="rauFile_FileUploaded" TargetFolder="~/Uploads/Run Matrix/" />
<telerik:RadButton ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" />
Devon
Top achievements
Rank 1
 answered on 20 Jun 2017
0 answers
101 views

Hi!

I have two radgrids and i want to pass the data to another radgrid when i press the "edit" button"

.

Ps. Dont want the drag and drop option. Just by clicking on the edit button.

 

Thankss!!

 

Vanessa
Top achievements
Rank 1
 asked on 19 Jun 2017
1 answer
210 views

                          <ExceptionType>System.NullReferenceException, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</ExceptionType>
                            <Message>Object reference not set to an instance of an object.</Message>
                            <Source>mscorlib</Source>
                            <StackTrace>   at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark&amp; stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
   at System.Reflection.RuntimeAssembly.InternalGetSatelliteAssembly(String name, CultureInfo culture, Version version, Boolean throwOnFileNotFound, StackCrawlMark&amp; stackMark)
   at System.Resources.ManifestBasedResourceGroveler.GetSatelliteAssembly(CultureInfo lookForCulture, StackCrawlMark&amp; stackMark)
   at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet(CultureInfo culture, Dictionary`2 localResourceSets, Boolean tryParents, Boolean createIfNotExists, StackCrawlMark&amp; stackMark)
   at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo requestedCulture, Boolean createIfNotExists, Boolean tryParents, StackCrawlMark&amp; stackMark)
   at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)
   at System.Resources.ResourceManager.GetString(String name, CultureInfo culture)
   at Telerik.Web.LocalizationProvider.EmbeddedResourceLocator.GetString(String resourceKey)
   at Telerik.Web.LocalizationStrings.GetString(String key, Boolean throwErrorIfMissing)</StackTrace>

 

web.config httphandlers has following entries with regards to telerik

<httpHandlers>
        <add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" />
        <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" validate="false" />
        <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="ArcherTech.Web.HttpHandlers.ArcherDialogHandler, ArcherTech.Web" validate="false" />
        <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false" />

 

The issue comes intermittently while access WebApp, needs IIS restarts and works fine for sometime until running into same issue again later.

krishnat
Top achievements
Rank 1
 answered on 19 Jun 2017
0 answers
158 views

We're using Google Chrome browser version 58.0.3029.110 (64-bit) in Windows 10.

A phantom vertical line appears when using the telerik:RadTabStrip. Please see the attached image. This doesn't appear in other major browsers, such as Edge, FireFox, or Safari.

Kirelet
Top achievements
Rank 1
 asked on 19 Jun 2017
0 answers
144 views

I have an application that was made in 2009 and runs on .NET 3.5. It uses the 2009.3.1103.35 version of the Telerik.Web.UI.dll. The project relies heavily on that Rad user controls and AJAX managers, etc..

 

However, I have to upgrade the project to at least 4.0. The version of the installed Telerik does not support 4.0... So, I would also need to upgrade my version of Telerik, as well as buy a new license since the application was originally built by a third party.

 

I was curious as to what the process of upgrading from the 2009 version of Telerik to a more recent version would look like? Would it be simple or would it involve extensive work?

Kyle
Top achievements
Rank 1
 asked on 19 Jun 2017
0 answers
137 views

Hi,

I am creating RadPivotGrid fields on page load programmatically, but when ı drag and drop any fields to another area (column,row,data etc.) all fields are disappear and no data available.Here is the server side vb code. Can anyone help me what is the reasen of this? 

 

      RadPivotGrid1.EmptyValue = ""
            RadPivotGrid1.ColumnHeaderCellStyle.Width = New Unit(90)
            RadPivotGrid1.ClientSettings.Scrolling.AllowVerticalScroll = True


            Dim JSs = New AdvancedJavaScriptSerializer()
            Dim lstPivotGridField As List(Of PivotGridFieldItem) = JSs.Deserialize(Of List(Of PivotGridFieldItem))(Request.Params("lstPivotGridField"))

            For Each PGField In lstPivotGridField
                If PGField.DataField.Trim = "" Then
                    Continue For
                End If

                Dim Field As PivotGridField = Nothing
                Select Case PGField.Group
                    Case 0
                        Field = New PivotGridColumnField()
                    Case 1
                        Field = New PivotGridRowField()
                    Case 2
                        Field = New PivotGridReportFilterField()
                    Case 3
                        Dim AggField = New PivotGridAggregateField()
                        Select Case PGField.Type
                            Case 0
                                AggField.Aggregate = PivotGridAggregate.Sum
                            Case 1
                                AggField.Aggregate = PivotGridAggregate.Count
                            Case 2
                                AggField.Aggregate = PivotGridAggregate.Average
                            Case Else
                                Continue For
                        End Select

                        AggField.Caption = PGField.Caption
                        AggField.DataField = PGField.DataField
                        AggField.UniqueName = PGField.DataField
                        AggField.DataFormatString = "{0:F2}"
                        AggField.TotalFormatString = "{0:F2}"

                        RadPivotGrid1.Fields.Add(AggField)
                        Continue For
                    Case Else
                        Continue For
                End Select

                Field.Caption = PGField.Caption
                Field.DataField = PGField.DataField
                Field.UniqueName = PGField.DataField
                RadPivotGrid1.Fields.Add(Field)

            Next

 

----------------------------------------- ASPX CODE BEHIND --------------------------------------------------------------

 

<telerik:RadMultiPage runat="server" ID="CubeReportMultiPage">
                                <telerik:RadPageView runat="server" ID="pwTablo">
                                    <telerik:RadAjaxPanel ID="radAjaxPanel" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
                                        <telerik:RadPivotGrid RenderMode="Lightweight" runat="server" ID="RadPivotGrid1" AllowFiltering="true" AllowPaging="true" ShowFilterHeaderZone="false" OnPivotGridCellExporting="RadPivotGrid1_PivotGridCellExporting" OnCellDataBound="RadPivotGrid1_CellDataBound">
                                            <ClientSettings EnableFieldsDragDrop="true">
                                                <Scrolling AllowVerticalScroll="true"></Scrolling>
                                            </ClientSettings>
                                        </telerik:RadPivotGrid>
                                    </telerik:RadAjaxPanel>
                                </telerik:RadPageView>
                                <telerik:RadPageView runat="server" ID="pwGrafik">
                                    <telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Visible="true" Legend-Appearance-Position="Top"
                                        PlotArea-YAxis-LabelsAppearance-DataFormatString="C" PlotArea-XAxis-LabelsAppearance-RotationAngle="45">
                                    </telerik:RadHtmlChart>
                                </telerik:RadPageView>
                            </telerik:RadMultiPage>

Yavuz Selim
Top achievements
Rank 1
 asked on 19 Jun 2017
0 answers
115 views
When I use RadSpreadsheet control inside RadSplitter control, RadSplitBar is not working.
sandeep
Top achievements
Rank 1
 asked on 19 Jun 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?