Kendo Asp.net MVC columnresizing save width - grid

I am trying to save the grid column size following on the telerik sample
http://demos.telerik.com/aspnet-mvc/razor/grid/columnresizing
this does not work in kendo UI. I am using the latest Kendo Asp.net MVC.
here are the issues I saw:
1) .ClientEvents method is not defined in kendo UI.
2) GridAction attribute is not defined in kendo.mvc.dll
How can I make this work for Kendo UI ASP.NET MVC?
shouldn't Kendo UI cover all the functions that telerik UI provides? what is the equivalent way to do the same?

What you are looking are the old MVC extensions demos, they are deprecated. Either use the MVC Kendo Wrappers demos (QSF) or if currently using the old extensions check the migration guide referenced here.

Related

Creating UI elements in Xamarin.Forms

I am not in Xamarin.Forms. In windows desktop apps (win forms and wpf), you can create a user UI component and you can use it in any project. Is it possible to create that kind of small UI elments in Xamarin.Forms?
I will have like a dll and will add to my project and will add to my form and I will give properties that I'll already defined in the UI element.
So, in Xamarin Forms world, we typically create User Controls through use of ContentView.
This can be done with a XAML part and code behind, but you can easily create them just in code too.
There are a series of tutorials available on the web, one that is very clear is this one https://mindofai.github.io/Creating-Custom-Controls-with-Bindable-Properties-in-Xamarin.Forms/
If needed, you can create a separate Xamarin Forms project that encapsulates your controls and reference that in your main app solution.

How to create own datepicker control in asp.net?

I want to create my own datepickar control(or dll),so can use it another project.How to create that?
Why create such a thing for yourself and invest a lot of time investigating, fixing problems, providing support, ... for it?
There are a bunch of such controls available which can be found with a simple search via your preferred search engine.
For ASP.NET I would suggest to either buy a 3rd party control from a well known vendor or take a look at the following:
jQuery UI Datepicker
ASP.NET Ajax Control Toolkit Calendar control
If you're using ASP.NET 4.0 or above, I'd suggest using the Bootstrap datepicker to keep your application looking consistent.
You can find the Bootstrap datepicker here: https://bootstrap-datepicker.readthedocs.org/en/latest/

is Kendo ui supports VS Community 2015

Is the Telerik UI for ASP.NET MVC i.e) Kendo UI will supports the VS Community 2015 Edition?
Tell me about the kendo VS extension also...
Thanks in Advance
you should check out UI for ASP.NET MVC product overview page here: http://www.telerik.com/aspnet-mvc
Also the demos for UI for ASP.NET MVC are available online here: http://demos.telerik.com/aspnet-mvc
VS Extension for UI for ASP.NET MVC is nothing but HTML helpers or what is called as Wrappers for Kendo UI. Since its MVC you dont do a drag & drop development. Instead you get helpers for most of the Kendo UI widgets.
for e.g. in Razor you will create a Kendo UI DatePicker like below:
#(Html.Kendo().DatePicker().Name("dob"))
Do check out the URLs i gave you above to get more information.
hope this helps.

Modal MessageBox for ASP.NET without jQuery

I have an assembly with custom ASP.NET server controls that is used in several, mostly in-house, ASP.NET 2.0 applications. The server controls use simple modal popup messageboxes, which are currently implemented using the javascript alert and confirm functions.
I want to release a new version of this assembly that uses a better solution for messageboxes, including support for Yes/No buttons.
Ideally the appearance would be something like a simplified version of the Ajax Control Toolkit ModalPopup extender (sample here).
My constraints are that this should be as easy as possible to integrate into existing ASP.NET 2.0 applications without introducing new dependencies: ideally just drop in a new version of the assembly, that contains all the javascript it needs as an embedded resource, and possibly a CSS file.
Because of this constraint, I am not considering solutions I've seen that use jquery, or the ASP.NET Ajax Control Toolkit, which appears to require adding elements to pages that use the extenders (ScriptManagers and the like).
Any recommendations?
This might help..a javascript example: How to code a JavaScript modal popup (to replace Ajax)?

How to create an ASP.NET Listview with draggable column widths?

In windows applications we can change the ListView's column width by just dragging the header of the column. How can I done that in a ASP.NET ListView?
ASP.NET listview does not support that feature. You can make your own implementation using a combination of ASP.NET and Javascript (or ASP.NET AJAX or JQuery).
I would recommend looking at the Telerik RadControls for ASP.NET.
Specifically check out the demos for:
Grid
ListView
DevExpress also makes some great control packages as well that might suit your needs. I haven't come across very many great 'free' ajax enabled grid controls that I would recommend unfortunately.
You can also look on the ASP.NET site for a list of controls.

Resources