our design team is using WebFlow to design our new web application, however our development team is using Polymer 2.0 (started the app with the blank application template in Polymer CLI). When the design team exports their design from the WebFlow editor it outputs 3 css files (site.webflow.css, normalize.css, webflow.css), the html files and 2 js files (modernize.js, webflow.js). We can figure out how to get the css files incorporated into the Polymer 2.0 app, but we are stuck trying to understand how to import the js files. The webflow.js file includes all the interactions etc. I can send the WebFlow design output to anyone if that would help. Any insight is greatly appreciated.
Related
I've created a ASP.NET Web Application .NET Framework project, and when I convert the CSProj file to use SDK format, my Razor view targets Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper instead of System.Web.Mvc HtmlHelper.
Is this a feature of the SDK projects?
Is there is no support for Razor in a .Net Framework world at this time?
Will there be?
The new MsBuild format is so nice ... I want it for my projects, REALLY badly.
Hi ,
I just changed my server and from what i understand i have installed all the dependencies required for this. But still i am unable to view my PDF instead a distorted code is shown and what's more annoying is that i have a bunch of projects in CODEIGNITOR Framework that are working fine but this project is developed in laarvel 5.
Is there any additional dependency for laravel or am i doing it wrong at some place.
I just joined a new team and don't know their whole programming structure yet.
The image-content you posted looks like a valid PDF - looking at it by a text viewer.
Did you try to open it with a pdf viewer?
Are you aware of any guide / tutorial / example project that might help me embed the jBPM web designer in an existing web application?
Namely:
Which are the maven libraries I need to include?
Is it possible to deploy the designer specific components in the main application WAR (this is after all what embedded means)?
How can I access the designer? Is there a specific URL for it?
Thanks in advance for any hint.
I finally found out how to do it.
What you need is a running instance of the KIE workbench (seems this was once formerly called Drools Guvnor). You can get a demo system up and running very fast using the jBPM installer. A written guide on how to do it can be found here. In my case I downloaded the jbpm-6.1.0.Final-installer-full.zip from here.
As soon as you have the JBoss AS/WildFly with the KIE workbench running you can access it through http://localhost:8080/jbpm-console/.
Now each BPMN process saved in the KIE workshop seems to have a unique path which is also a Git repository URL. When you open a diagram and go to the metadata tab this path is listed as URI.
To display this BPMN process inside a custom-built web application with the jBPM Designer BPMN 2 editor, just create an iframe HTML element with that URL in it like the following example:
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Test</h1>
<p>Editor frame below:</p>
<iframe height='800' src='http://localhost:8080/jbpm-console?standalone=&path=git://master#jbpm-playground/HR/src/main/resources/hiring.bpmn2' width='1000'></iframe>
</body>
</html>
As soon as you load that page, the editor will be embedded into the page via that iframe. This works even with a static HTML page without a web server, so it should be quite versatile and your web application surely doesn't need to run inside the same JBoss AS/WildFly instance and doesn't even need to be written in Java.
What I did not figure out so far is how to create new BPMN processes via some kind of API, which could then be edited within the standalone web application. Also I don't know how access control is supposed to work yet.
I have been developing an app that has to access a DB and return data has charts in a web page. since it is to be added to another software i had to create it as a local server / servce, using self host web api, returning the data as json so i can read it in my html file and create the charts.
The server / service works, but my problem remains on the client. I don't know if i have to create another project for my html or if i just add a folder with my html and all css and javascript.
Basically when i run it i have to display my html file.
I have been looking the web for examples / solutions but i can't seem to find one that will help me, i've checked:
creating help pages with T4, but it includes all my css and js files in my html and when i want to change something i have to remove the include, debug and include it again;
create a web app but when i run it it creates me 2 servers, the one i've created and the web page server, although my web page will access it using angularjs, i can't have the second server;
I'm a little lost on how i will do it.
Can someone give me some help?
I'm using VS2010, self-host WebApi, console app, entity framework, angularjs, nvd3 and d3.
thk
If you have developed your project using MVC4 you can create view/controller related to report in webapi project.Point add html files to this view.This won't create 2 servers.
With an MVC C# app that builds error-free, the Publish action (Release configuration) won't copy any of the controllers and several of files when "Publish only files required to run..." is selected.
Yes, MVC 1.0 is installed on top of ASP.net 3.5 SP1, and the MVC templates are visible in VWD. I'm at a loss as this is so simple. Any ideas?
Look at the properties of each file and make certain it states to copy when newer or copy always.
It may be set to "Don't copy"
I haven't done an MVC application myself, but I do know that when you publish a plain jane asp.net application all of the files are compiled down to an assembly and placed in the bin folder of your application.
You might want to check the folder you're publishing to and see if you have that bin folder and see if you have a .dll inside of there. If not, this could possibly be your problem.
Good luck and hope this helps you.