Telerik Forums
Kendo UI for jQuery Forum
0 answers
19 views
Hi ,

We are using Kendo Toolbar menu in our application , we are removing content after closing form but we are able to see those references in chrome memory tab , could you please any one tell me how to destroy or dispose those toolbar menu 
Naveen
Top achievements
Rank 1
 asked on 14 Feb 2024
0 answers
73 views

I have the following script tags in my .NET framework file 

<script src="~/Scripts/kendo2020/2020.3.1021/jquery.min.js"></script>
<script src="~/Scripts/kendo2020/2020.3.1021/kendo.all.min.js"></script>
<script src="~/Scripts/kendo2020/2020.3.1021/kendo.aspnetmvc.min.js"></script>
<script src="~/Scripts/kendo2020/2020.3.1021/jszip.min.js"></script>
<script src="~/Scripts/jquery.blockUI.js"></script>
<script src="~/Scripts/jquery.cookie-1.4.1.min.js"></script>

The JQuery version I am using is 3.5.1.

I have also added the following snippet under the WebConfig file.

<appSettings>
    <add key="Telerik.ScriptManager.EnableEmbeddedjQuery" value="false" />
</appSettings>

 

When I run a security scan, it flags the aspnetmvc.min.js file with Client DOM XSS and Prototype Pollution vulnerabilities.

Is there a way to fix it?

AJ
Top achievements
Rank 1
Iron
 asked on 11 Mar 2022
0 answers
49 views

Hi

I have successfully used jQuery to get and use the Value from a Field embedded on the page's form ... this is triggered by an entry (Key 13) ... what I would like to do for a different page is wait for a Form Field to be in focus, then update the content of the Field then refresh the Page ... what I believe is going wrong with my attempt is I don't believe the dynamic page has been loaded before my script is attempting to change the value. The example I have basically fires once when the page supposedly finishes azar loading.

<pre hidden=""> <script> var xmlhttp = new XMLHttpRequest(); var apptype = "New Membership chatrandom Application"; xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { jQuery('#vfb-field-1916').focus(); jQuery('#vfb-field-1916').val(apptype); location.reload(true); }} </script>

</pre> [vfb id=42]

EdwardCandis
Top achievements
Rank 1
 updated question on 01 Feb 2022
0 answers
63 views

Hello,

In my solution, I use AngularJs and package @progress/kendo-ui@2018.2.704.

Today I updated the package to latest version and I encountered weird issue regards to kendo dropdownlist.

In place where we use brackets and property name like {{property}}, kendo instead of displaying property value shows {&zeroWidthSpace;{property}&zeroWidthSpace;}.

omegle, cps test

Does anyone know what was changed and produced that issue and how I can fix that?

Jacob
Top achievements
Rank 1
 updated question on 22 Nov 2021
0 answers
51 views
i can't display a viewport with params. because kendoui always use the remote url.

example: http://demos.kendoui.com/mobile/view/index.html#secondview?id=2


i think this error in ViewEngine:

local = url.charAt(0) === "#",
remote = !local && !url.match(/^([\w\-]+)$/) => always is true
Tai
Top achievements
Rank 1
 asked on 26 Nov 2012
0 answers
96 views
Hi,

We are developing an application for Android Tablet using Kendo UI. Grid and Drop down lists are the commonly used components in our application. We are populating data in the grid and drop down lists from the Android inbuilt SQLITE database. For that we are currently switching from the .html file to the .java file where I have written the query for fetching the data and return back to html page for rendering the data on the screen. The screen transition seems to be very slow. Also we have link templates for the fields in the grid using which navigation to pages is done. Can you please help me to reduce the time it takes to navigate between pages.. ?

Thanks for the help in advance.

Johnson
Top achievements
Rank 1
 asked on 24 Oct 2012
0 answers
131 views
Hi,

i got the issue that when navigating to an external view a jscript error is thrown complaining that data for a binding could not be found.
-- Uncaught Error: Unable to parse bindings. Message: ReferenceError: Username is not defined; Bindings value: value: Username  
--

This happens when the user tries to navigate to an external page like "/Studies/List/".

Actually I use kendo.bind to display the data on the view (but it's the same problem with knockout).

Basically my Views look like this:

--
<div data-role="layout" data-id="buttons" >
        <header data-role="header">
            <div data-role="navbar">                
                <span data-role="view-title"></span>
             </div>
        </header>        
        <!--View content will render here-->                  
    <footer data-role="footer">
        <div data-role="tabstrip">
        <a href="#home" data-icon="home">Home</a>
            <a href="#details" data-icon="home">Locale View</a>
            <a href="@( Url.Content("~/Studies/List") )" data-icon="mostrecent">External</a>
        </div>
    </footer>
    </div>

<div data-role="view" data-title="Home" data-layout="buttons" id="home">
    <div id="dataView">
    <span data-bind="text: name"></span>, <span data-bind="text: vorname"></span>
    </div>
</div>

<div data-role="view" data-title="Details" data-layout="buttons" id="details">
    <span data-bind="text: name"></span>
</div>
--

and here is the minimal JScript for it:

<script type="text/javascript">
var app = new kendo.mobile.Application(document.body, {
    transition: 'slide'
});


var data = kendo.observable({
    name: "LastName",
    vorname: "FirstName"
});

kendo.bind($("#dataView"), data);
kendo.bind($("#details"), data);
</script>

--


so, whenever the user is in the home screen (v1) hits the 3rd tab-button and the "external" view (v2) is loaded, v2 is never displayed because jscript complains about the missing data that is bound in v1.

Really strange. Did I mention that it doesn't matter if you use kendo.bind or the knockout-version? It doesn't, so i guess it's a problem from either the views or the application (or all two both :) )
Does anyone have a guess on how to solve this?

Up to now i tried to remove the bindings when navigating away with data-hide  ( ko.cleanNode() ) but that does not help.
Setting the attr "data-bind" to "" could work but that's indiscutable.

Any help would be really great.
RedTears75
Top achievements
Rank 1
 asked on 10 Oct 2012
0 answers
78 views
Never mind. For some reason it works now that I'm using the unminified files.
Andrew
Top achievements
Rank 1
 asked on 09 Jul 2012
0 answers
61 views
Hi Kendo Mobile,

I am developing a food menu application, kendo mobile design and work is good on apple iphone and android emulator but when running on TAB like samsung galaxy tab then design is not good and that is very bad look, tabstrip breaking on screen.
what can i do for this problem?
i want my applicatio support to android and iphone both.

thanks
Nitin
Top achievements
Rank 1
 asked on 09 Jun 2012
0 answers
123 views
Hi There,


I have created a mobile application using kendo Mobile UI's trial version in asp.net MVC3.
Here I am facing a problem that whenever I click on any anchor tag/button then its url get appended with the current page's url.
eg:
www.testkendoui.com/CurrentPage_Controller/CurrentPage_Action#/www.testkendoui.com/NextPage_Controller/NextPage_Action


And this causes the next page not to work, and it works after refreshing the next page.


I have tried with :
  1.  data-ajax="false" on all anchor tags and forms.
  2.  adding "http://" with the main URL 
but that all does not working.


Any suggestion would be appreciated.. :)


Thanks in advance .. 
Kritika
Top achievements
Rank 1
 asked on 01 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?