If I can use the components by installing syncfusion as a module in my angular project, then why do I need o download and use the Installer - syncfusion

I registered for syncfusion trial for 1 month free, It asks me to download install file, My question is if I can use the components by installing syncfusion as a module in my angular project, then why do I need to download and use the Installer.
If I just reference in my package.json and do npm i I am able to use it. In this case where do I put my license

You need the license so that they can keep an eye on you if you are making more than 1 million USD.
however you don't need to download the installer, just import registerLicense like so and then put your API key within the registerLicense('api key') and you're good to use the component without any popup on the application.
import { registerLicense } from '#syncfusion/ej2-base'
registerLicense('api key');
You can grab the API key from your syncfusion dashboard "Downloads and keys" -> "Get License key".

Yes, you can download our npm package. However, to use our package legally they needed to get license from us by visiting syncfusion.com and signing up for license. This is also mentioned in our licensing document in npm package. Please find its content from GitHub link
Link: https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/grids/license
Documentation: https://ej2.syncfusion.com/angular/documentation/installation/
Online Demo: https://ej2.syncfusion.com/angular/demos/#/material/grid/overview
We don’t have any source level license validation, so you don’t have to do anything in your application for license validation. Our current license validation are fully based on support and new feature requests.
Please get back to us if you require any more assistance on this.

Related

Word JavaScript preview API

Is it possible to use the preview API in a offline environment? I means, something like to reference locally the library.
Thank you for your time.
Best regards
Yes, it is possible if you download the latest office.js version locally. To use preview APIs:
You must reference the beta library on the CDN (https://appsforoffice.microsoft.com/lib/beta/hosted/office.js). The type definition file for TypeScript compilation and IntelliSense is found at the CDN and DefinitelyTyped. You can install these types with npm install --save-dev #types/office-js-preview.
You may need to join the Office Insider program for access to more recent Office builds.
Read more about that in that in the Word JavaScript preview APIs article.

eZ Publish Site Package Error

I am installing ez publish(CMS) in my xampp...
however in this section of installation
SITE PACKAGE
I can't proceed even though I can click next.. I bet the site package is mandatory... I need your help guys... btw, I am installing 2013.5 version
here's the error
Error
Invalid package
Remote repository URL: http://packages.ez.no/ezpublish/5.0/5.0.0/
I've tried uploading the ezwebin_site.ezpkg in the remote repository still I can't proceed... thanks in advance.
Site Package selection step within the Setup Wizard is more or less required (you must select one package using the ratio buttons) to complete a proper eZ Publish installation first time.
Notice the 'Help' sidebar content, "The type of site will choose some basic settings for toolbars, menus, color and functionality. It is possible to change these settings at a later time.".
This is to remind new users that you first use the setup wizard for your first time installation of eZ Publish and then you can re-configure eZ Publish settings, design, extensions, etc manually as much as you desire / require. You can customize almost any part of eZ Publish, once you have it installed and setup properly.
It is recommended for new users to install the 'Website Interface' (with content) package for your first installation. Again you can change all it all after you have completed the default installation and have a working default installation.
More experienced developers may choose to use the 'Plain site' package (with no content, and significantly less default functionality and helpful tools) but this option often causes extreme confusion to new users / developers (who need the tools provided in the 'Website Interface' package to get started using eZ Publish quickly) as it omits expected content classes, default content use case examples, roles / policies, default settings use case examples, ezwebin design extension and much more. As such any package choice other than 'Website Interface' (with the version of eZ Publish you are using) is very strongly discouraged.
Advanced Developers with an already setup installation can create their own site packages to reuse in the future to simplify configuration of a default installation.
Resolution Edit: During an extensive stackoverflow and irc chat it was determined that the user asking the question lacked the WAMP server (PHP modules) support required by eZ Publish 5.x which is why the user was having installation setup problems. Specifically the user was missing the required php curl module which is used / required by the setup wizard to download site packages. The user was strongly recommended to replace Xampp (on win32) with Bitnami (for eZ) which provides for all the requirements of eZ Publish 5.x by default and has already been heavily tested and customized for use with eZ Publish 5.x. Also the user was using an older version of eZ Publish 5.x (2013.5 community build) which only supports PHP 5.3 and the user's Xampp PHP version was PHP 5.6.8 which requires at the very least eZ Publish 5.x (2014.11 community build).

How to allow users to send issues via e-mail to MantisBT?

In http://en.wikipedia.org/wiki/Comparison_of_issue-tracking_systems#Input_interfaces it says, that Mantis allows Input via mail.
I checked config_defaults_inc.php for associated settings, but could not find them. How can I allow my users to send issues to my MantisBT instance?
You will have to install the EmailReporting plugin to enable this feature. You can download the plugin from https://github.com/mantisbt-plugins/EmailReporting
Installation of the plugin is straightforward, but configuration can be done only from the plugin page. Please make sure that you read the README before using the plugin.
If you are using MantisHub (MantisBT as a Service), email reporting is included as part of the gold and platinum plans:
http://www.mantishub.com/
You can find the documentation of the feature at:
http://support.mantishub.com/hc/en-us/articles/204273585-Using-Email-Reporting

How create an installer of chrome packaged app?

I need to demonstrate a test version of my app. I DON'T want to load it to the store yet. I want create an installer of my app, so the user can go to my site and install the application by clicking.
First of all, have you read the documentation including developer installation, enterprise installation, publishing on the Web Store only to test accounts, and recent announcements of changes? Assuming you have, then with the exceptions listed in those sources, all apps/extensions must be published in CWS. They don't have to be listed publicly, but they do have to be published there.
Your best bet is to use the test-account feature of CWS for your demonstration.
This is very easy, yo can create the installer vía chrome://extensions > Developer Mode > Package extension.
Then you got the .crx file, you can upload it anywhere and share it. To install it, user must open chrome//extensions and drop the file in the page.
The option to install from webpage by clicking was disabled in Chrome for security reasons.

How to host a package on NuGet.org?

I have an open source project SystemWrapper. Someone recently asked me to add it to NuGet gallery. I had no problem to create a NuGet package. However, I cannot figure out how to add my package to NuGet Gallery.
Can someone point me to a link that describes how I can do that or tell me the steps I need to make.
I think the page at http://docs.nuget.org/docs/creating-packages/creating-and-publishing-a-package may be what you're looking for.
The basic process appears to be to register for an account at NuGet.org, tell your local NuGet package manager your API key, then "push" your component.
Good luck!