I have a scenario where I have to display more than 10 Kendo UI Windows in a page . I should able to drag the windows in the page anywhere on the desktop and also in extended monitor . I know the scope of the window is within the page. But how can I make achieve this in asp.net mvc3 ?
Related
I'm currently trying to build a simple macos & WPF application with the help of the MvvMCross framework. I'm having some trouble with navigating from one Viewmodel to another. I've got my WPF client currently working as desired, but I can't seem to achieve the same behaviour for my macos client.
Clicking on any navigation button opens a separate window. What I'd like to see is that the content in the current window changes to the content of the view that was navigated towards.
You can find the code over here
We want to open a web site inside a Xamarin web view but we want to hide some parts of it.
Is it possible to manipulate the web site's DOM to for example, hide a banner, or a button?
Also, we want to hide those things before they even appear so the user don't see them disappearing.
Thanks
I have a website developed using Kendo UI(kendoui.professional.2017.1.118.commercial). The Kendo icons(Grid Edit(k-i-edit) and delete command button icons and calendar control icons and grid pager icons, etc.) are not visible when i open my website in Microsoft Browser Control where as if i open the website in Internet Explorer browser the icons are displayed.
Observed the following:
I am using Windows Server 2012 R2 OS where the IE Enhanced Security Configuration is "ON". If i make this "OFF", able to see the icons in the Web Browser control.
Is there any workaround to display the icons in Web browser control with out making IE Enhanced Security Configuration Off?
I am doing a mobile application in kendo UI. When clicking on the item in the listview its redirecting to some page. My requirement is that for long click also it should redirect to some page.
How can i make it possible in mobile using kendo ui?
Thanks in Advance.
Based on this answer from Kendo UI forums (no native OS events), you could look at this question about Long Press just down the road in SO.
Basically start experimenting with JavaScript events and timers.
As far as I know, JQuery Mobile events (taphold) and plugins are not an option as they would be competing with Kendo UI for page control, but you might get some ideas for your implementation.
In my window application when I login I open a new window there I want to display the webapplication that is like xxx.aspx in the same window. How can i write the code in window?
I think you are looking for
WebBrowser Class
Enables the user to navigate Web pages
inside your form.
The WebBrowser control lets you host
Web pages and other browser-enabled
documents in your Windows Forms
applications. You can use the
WebBrowser control, for example, to
provide integrated HTML-based user
assistance or Web browsing
capabilities in your application.
Additionally, you can use the
WebBrowser control to add your
existing Web-based controls to your
Windows Forms client applications.
Edit:
Add a webbrowser control from your tool box to the form in which you need to show the web page.
and you can use the Navigate method
webBrowser1.Navigate("http://www.stackoverflow.com");
See
Navigate