Kendo Grid for Angular 2 Features - kendo-grid

I am currently trying to move from Angular 1.5 to Angular 2 and we are using Kendo Grid features extensively. I have a list of features which I need for converting to Angular 2 -
Multi Column Headers and Column Filters (available in Kendo-UI for Angular 1 through ColumnMenu -> Columns). Not available - Multi Column Header for Angular 2 Kendo Grid
Data Filters for Columns(available in Kendo-UI for Angular 1 through ColumnMenu -> Filter). Not available - Kendo Angular 2 Grid Filter not available
Exporting to Excel (available in Kendo-UI for Angular 1 through toolbars). Not Available - Kendo UI Angular 2 Grid Excel Export
The question is, is there any place/table which lists all the features of the Kendo-Grid for Angular 1 and lists whether it is available in Kendo for Angular 2 and if not, which release is it planned in. The roadmap is not very clear on when these features are planned to be released and what features will be available in the Jan/May release.
This would be very helpful in deciding whether to move to Kendo for Angular 2 or not.
Thanks

All this functionality is about to be implemented in the Angular 2 suite. You can log missing features on UserVoice, so that you'll be updated on the planning and implementation status.

Related

Should i create one page angular 6 application without use ng new myapp command?

I need to create one page or two page using angular 6 but I don't want to use ng new myapp command. please guide me hows to use on one simple html page ?
Angular create directory structure which will be required for transpiling your code from typescript to javascript bundles. Also for the compilation it needs many npm dependencies, which directly managed by angular-cli. So you always should use angular-cli i.e. ng new myapp.
If you are just prototyping, you can use https://stackblitz.com/ which provided all VS code functionality in browser without any setup.
Follow the official angular tutorial.
Angular is built upon the concept of single page applications.
So if you want to create an application with 2 pages, what you need to do is creating two components (using ng generate component command) and switch between them using routing. Follow the documentation.

Render jsf form in pdf

Hi I got a requirement where I have a pdf form to register for university. In this form you will need to input your personal details and all your qualifications. Instead of filling this form on paper , they want to do it online on web.
So I will be using primefaces 5.3 and jsf 2.0 to build the form and save it in db using hibernate and spring. Now after saving the form, I should be able to generate the form on a pdf and keep the format the same as it was on paper. ( with dot line and small tables etc...) Do you know any pdf library that can do this? Normally i use itext for pdf but it's not possible to keep this format with itext.
There are many tools to do that, you can use ireport or jasperreport to build your reporting i advice you to use this tools, they work good with java
you can find here
http://community.jaspersoft.com/project/jasperreports-library
http://community.jaspersoft.com/wiki/designing-report
http://community.jaspersoft.com/wiki/ireport-designer-getting-started
I wish that can help you good luck.

ExtJS 4.1 export grid store to PDF

My problem: Export my grid store to PDF.
Possible solution: I have looked at many post, many suggesting this plugin from github
//problem is: This plugin uses Ext 3.0 and I need something in 4.1.
Any other solution in ExtJS 4.1?
The same one has been ported to ExtJS 4:
https://github.com/iwiznia/Ext.ux.Exporter

Change application descriptor at runtime in flex 3

I have run into two issues working on flex 3 currently:
Is it possible to change field at runtime or atleast set values through actionscript during the initialization(or at runtime)?
Right now I don't use flex sdk or the builder, how should I access native application, if I import flash.desktop.nativeapplication it says not found when I compile.

Generated Razor Files Don't Work After MVC4 Upgrade

After upgrading a working MVC 3 solution with Razor views to the MVC 4 beta, I get the message "} expected" from files called App_Web_2x0hrczu.0.cs and App_Web_supamddr.3.cs. They're generated files, obviously, but they appear to refer to a partial view (a .cshtml). Everything used to work, so I'm confused! Any ideas?