Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
102 views
Hi,

We upgraded to the latest version (2014.1.425.40) few days ago.
We have few grids with inline filter.
This is the grid's decleration:

<telerik:RadGrid id="gridLgs" runat="server" AllowSorting="True" AutoGenerateColumns="false" AllowMultiRowSelection="true" AllowFilteringByColumn="true" OnNeedDataSource="GridViewControl_NeedDataSource" Width="99%" Height="320px" Skin="HPX" EnableEmbeddedSkins="false">

As you can see, we have our own skins:
Skin="HPX" EnableEmbeddedSkins="false"

After the upgrade, all grids with filter throws exception:
Telerik.Web.UI.GridFilterMenu with ID='rfltMenu' was unable to find an embedded skin with the name 'HPX'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false.

But 'HPX' is not an embedded skin... And we declared EnableEmbeddedSkins=false.

Please advise. It's urgent.

Thanks,
Guy.
Segev
Top achievements
Rank 1
 answered on 13 May 2014
4 answers
143 views
Hello,

I am currently using a RadTreeView that loads all parent nodes in collapsed mode but its child nodes on demand. 

When we expand any parent node, then drag any child node we face an issue -> Position line(visual pointer) is not displayed that determines where will be the draged node placed. Thereafter it works fine.
Issue occurs only for the first time.

Please advise.

Regards,
Mohit
MOHIT
Top achievements
Rank 1
 answered on 13 May 2014
5 answers
108 views
Hi,

I'm using Telerik and JQuery UI together in an application.  I have found that a javascript error occurs when RadFormDecorator is on the page and you try to display JQuery UI Dialog with a button.  This only seems to occur in IE 11.  IE 10 and IE 9 seem fine.  If I remove the radformdecorator this works, or if I change the dialog prompt to not include a button it also works.  Below is the code to reproduce this.  Thanks!

Code:
<form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" />
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" />
        <input type="button" value="Test" onclick="Run()" />
        <div id="TestDiv" style="display:none"></div>
        <script type="text/javascript">
            function Run() {
                $('#TestDiv').dialog({
                    modal: true,
                    buttons: { "OK": function () { alert('bye'); } }
                });
            }
        </script>
    </form>


Richard
Top achievements
Rank 1
 answered on 12 May 2014
1 answer
124 views
May i use a range slider as shown on the attached image?
Meaning both buttons should display their current position/value. 

Thank you
Slav
Telerik team
 answered on 12 May 2014
5 answers
153 views
I would like to know how can we copy and paste a file by drag and drop ?

I found this demo and drag and drog functionality is not working in the demo as well


https://demos.telerik.com/aspnet-ajax/fileexplorer/examples/client-sideapi/clientsideevents/defaultcs.aspx

Kindly help,
Thanks
Vessy
Telerik team
 answered on 12 May 2014
13 answers
370 views
We have the ButtonSettings ShowCheckAll=true and it is showing up and working as expected in our UI.

However, we would like to conditionally set the checkbox value so all the checkboxes are already preselected.

We would like to do this from either server or client side.  How can this done?

We are currently running version 2013.2.717.40.

Thanks in advance.
Bob Baldwin
Trabon Solutions
Bob
Top achievements
Rank 1
 answered on 12 May 2014
5 answers
105 views
Hi, We are having an issue in IE8 (Telerik 2013.3 1324) where when we click the Upload button of the FileExplorer to make the Upload dialog appear, the InputBox and Select button are not visible and not responding on clicks. However, when we drag the dialog topbar to move the window, they finally appear on mouse click release. If we close the dialog and re-click the Upload button, everytime it's fine (We need the reload the page to make problem re-occur). I tried both EnableAsyncUpload options, played with skins, always same result. Using Compability Mode seems to solve this and we dont have this problem in Chrome,FF,IE11,Safari nor Opera. I have also attached a screenshot illustrating the problem. 

here is the markup:
<telerik:RadFileExplorer runat="server" ID="RadFileExplorer1" Height="125px"
          Width="100%" Skin="WebBlue" FilterTextBoxLabel="Filter By"
          meta:resourcekey="labFilterBy"
          EnableCreateNewFolder="False"
          EnableAsyncUpload="True" EnableOpenFile="False" ExplorerMode="FileTree"
          PageSize="50">  
              <Configuration EnableAsyncUpload="true" MaxUploadFileSize="52428800"   />
</telerik:RadFileExplorer>

TIA
Vessy
Telerik team
 answered on 12 May 2014
3 answers
641 views
I'm using RadHtmlChart control and trying to configure the XAxis Major Grid Line to show every 7th value.

I tried setting PlotArea.XAxis.Step = 7 but it doesn't appear to have any impact.

Does RadHtmlChart have built-in functionality to display major grid lines every Xth value?

Thanks,
Anthony
Danail Vasilev
Telerik team
 answered on 12 May 2014
2 answers
133 views
Hi,
first of all excuse me if i'm posting in the wrong place and for my english...

I've a problem related to the RadWindow ASP.NET AJAX component and the iPad devices.
I'm using this component to display some informations inside a RadGrid with the possibility to download documents (mostly PDF).
The RadWindow is populated with an aspx page and the selected document is first save into a session and then ready for download.
On desktop devices everything is working correctly and the user can choose if he want to open or download the file.
Instead on iPad the PDF document is opened directly inside the RadWindow control, without scroolbars, making it impossible to read the entire document.

Is there a solution to solve the problem and read the entire document on iPad devices, maybe opening it in a new page?

This are parts of my code:

DOWNLOAD METHOD:

string disposition = saveAsFile ? "attachment" : "inline"; //SET TO TRUE

HttpContext context = HttpContext.Current;

context.Response.Clear();
context.Response.ClearHeaders();
context.Response.ClearContent();
context.Response.ContentType = MimeMapping.GetMimeMapping(filename);
context.Response.AddHeader("Content-Length", dataToRead.ToString());
context.Response.AddHeader("Content-Disposition", String.Format("{0}; filename=\"{1}\"", disposition, filename));

RADWINDOW

<telerik:RadWindow runat="server"
    ID="modalPopup"
    Modal="true"
    AutoSize="true"
    MinWidth="900px"
    ReloadOnShow="true"
    Animation="Fade"
    VisibleStatusbar="false"
    Style="z-index: 100000">
</telerik:RadWindow>

Thanks

Roberto
Top achievements
Rank 1
 answered on 12 May 2014
1 answer
136 views
Hello, I a web page with a telerik gridview control. For one of the columns, I would like for the user to be able to sort on the column. I can do the sorting in my C# code behind file. However, is their a way to get postback when someone presses the gridview header for the column? You see if I can get postback that way, then I can sort the data and rebid the grid with the sorted data.
Shinu
Top achievements
Rank 2
 answered on 12 May 2014
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?