Create DevExpress Dashboard in a project with asp.net core - asp.net-core

Hello Everyone I am new in StackOverflow so I may can't describe my problem well But I try my best and I am conting on you to help me with this ;
I have problem in myproject asp.net core wanna build dashboard with devexpress I already followed a tuto by devexpress but it seem something doesnt match when I try to install a package with NuGet I can't find it I have already try to add the package source so it help me find it but still nothing , I really need to do somthing about it immediately .
Here is some link to know more about this issue
The package :DevExpress.AspNetCore.Dashboard
-the tips that I thought it could help me : https://docs.devexpress.com/Dashboard/119284/getting-started/build-end-user-dashboard-designer-applications/create-an-aspnet-core-designer?v=18.1
-the tuto I followed : https://docs.devexpress.com/Dashboard/119284/get-started/build-web-dashboard-applications/create-an-aspnet-core-dashboard-application
I use asp.net core version 2.0
DevExpress 17.2

Source: C:\Program Files (x86)\DevExpress
18.1\Components\System\Components\packages
In the tutorial you refer to, the Source path added by it downloads the corresponding packages to a local folder, but because you did not download it, you cannot find the corresponding package using the path in the reference document.
Please refer to this article, log in to the account on the DevExpress official website, and click the Obtain Feed URL, an url including your authorization key and api will be generated.
Then when adding the package source, change the Source path to the url and continue to follow the tutorial.

Related

Is there any website which provide implementation details of ASP.NET Core source code?

As ASP.NET Core is open source, I am looking for website which provide source code implementation of various classes and its functions/method.
I have seen such website during PluralSight course but I am not able to recall it. I know I can download git hub repo and check source code but I want Website where I can utilize tree like structure to view source.
Checkout these:
https://source.dot.net (official)
https://aspnetsource.azurewebsites.net (made by yours truly as a hackthon project last summer. Hoping to make it official: https://github.com/dotnet/source-indexer/issues/5)
You can browse the repo right on github, if you really want to see a tree structure you can use octotree

Bootstrapping Aurelia

Finally, I start to work with Aurelia. There is a starter kit available Here which facilitates initializing Aurelia. But it is a template which should be used within a Web Site template.
I have a pre-configured WebApi project and I want to use Aurelia in it. I've just added the starter kit files and folders to my project. But unfortunately it shows 27651 errors fo files in jspm_packages.
What am I doing wrong? Is there any Nuget bootstrapper for Aurelia available?
Start with the aspnetcore template from Here
You can use web api from the template.
You will be up and running in minutes.
If you are using Web API, starting from an MVC5 project might be faster.
The following link is an Aurelia starter kit with MVC5.
You will have to update it to the latest version of Aurelia, but I managed to make it work with web api 2 and oAuth authentication.
https://github.com/rmourato/Mvc5-Aurelia
A tutorial can be found here.
http://ruimourato.com/2016/01/26/running-aurelia-on-mvc5.html
Hope this helps.
Well you asked what the errors are from. First thing is that you should exclude the jspm_packages folder from VisualStudios solution explorer Right click on it and mark 'exclude from project'.
Next, setup your project on source control (git) if not already and add the following to your git .ignore file
jspm_packages/
node_modules/`
I would suggest creating a second project aside from your WebAPI project that can contain static html, css and js files and do your Aurelia application there separate from your Web API project but in the same solution.
I could possibly give you a solution that is already setup, that shows how to use web api along with aurelia. But it would take some time for me to setup.
For all of my projects using Aurelia, I use the aurelia-cli which you get through npm and I would also recommend this approach.
You can be up and running with hello world in under 5 minutes.
You will then be able to build all the appropriate bits and pieces to talk to your api.
http://aurelia.io/hub.html#/doc/article/aurelia/framework/latest/the-aurelia-cli/1

How to make expandable list for Windows10 Universal App?

I am newbie to windows universal app development and I need an expadable list. In the past I did it with WPToolkit for Windows Phone 8 but I read that it is not available for UWP. I see ExpanderRT project and tried to use it but I couldn't be successfull. I add Shared project of ExpanderRT as an existing project to my solution and use as in the screenshot. Now I'm taking the namespace error.
I have a time limit. I need fast and easy working soluton for expandable list. Thank you all for your help.
[UPDATE]
I tried https://github.com/brendankowitz/ZeroProximity.Accordion as #Osman said. But I'm not sure if it is the right decision. Because I see the expandable list and it works but project build throw error as in the screenshot below. I install it via nuget. It wasn't installed in the first place. I run as a administrator and changed project.json 's Copy to Output Directory value to Copy always. Then it was installed.
So my questions; Is this error important? Will it create problems when I want to put the app on store? I don't know how to act to this error, please help!
https://github.com/brendankowitz/ZeroProximity.Accordion
You can use the library given in the link above. I used it on our UWP project.It works great.
Hope this helps,
Osman

where can i find openerp_report_designer plugin?

I found a plugin folder inside base_report_designer but when I added that to apache open office it doesn't show any signs of working. Please can anyone guide me on this I also tried looking at resources or steps mentioned on over various websites but I failed to do so.
Just You can download the base_report_designer module from the this link
Click To Download
You should add that module in your OpenERP 7.0 addons directory and install in your system.this module is working fine from my side.
Reference link for installation Guideline :
YouTube :
https://www.youtube.com/watch?v=WOk6spaWzMg
Other Web References :
http://www.serpentcs.com/wp-content/uploads/2014/08/OpenERP-Report-Designer.pdf
I hope my answer may helpful for you :)

Web API Help page not showing XML

I have a Web API project in which I removed by hand Areas folder few months ago when we started development. Now after everything is finished I want to add API help pages but it is not working as expected.
I installed nuget package for help pages.
I uncommented line in HelpPageConfig.cs
I checked Generate documentation file (to App_Data folder)
When I open http://localhost:51665/help I get this: (No methods are shown)
Any idea what could be wrong? If I start new project from scratch everything works properly.
I suppose you've setup your project in two steps:
You should choose Build tab in API project Properties and set up XML Documentation file in Output section. For example: App_Data\XmlDocument.xml
Then you can updateHelpPageConfig.cs in method Register... in my case
config.SetDocumentationProvider(new XmlDocumentationProvider(HttpContext.Current.Server.MapPath("~/App_Data/XmlDocument.xml")));
When your project is in compilation process, take a look in output window, whether documentation is really generated.
Try to use older version of ASP.NET Help pages (version 5.2.2 works for me).
Install-Package Microsoft.AspNet.WebApi.HelpPage -Version 5.2.2