Hey I just found calendars for my app I want to develop.
Because I'm totally new to this I need some help on how I can implement that calendar into my application.
https://designsmaz.com/free-html5-css3-calendar/
Right now I just copied the css files and so on in the project folder but right now nothing shows up. So I think I got to implement something in my app or place that stuff in an other directory.
For developing I'm using Intel XDK.
Thanks for your help!
Ok, I just added the index file from the online project to my project directory and it works fine. So I'm able to go on testing. ;)
Related
I started looking at the Magnolia CMS system and found a project on the web and I can't open it and run it.
This are the files:
author.tar
magnolia.tar.xz
public.tar.xz
magnolia.tar
I tried to add the files into apache folder and run it, I tried with Magnolia CLI to run it, but with no success.
I miss something, but I'm completely new to Magnolia, so I have no idea.
Thanks in advance.
These pages should be sufficient to get started.
https://documentation.magnolia-cms.com/display/DOCS56/Getting+started+with+Magnolia
If you fancy CLI, then
https://documentation.magnolia-cms.com/display/DOCS56/Magnolia+CLI
Hope that helps,
Cheers,
I'm looking very hard to find a solution to this. I'm trying to serve my application so it reloads only changed css files without recompilling the whole app, because now it's very frustrating when you change one thing in CSS and have to wait for the app to recompile. I tried to use lite server but with no luck. Quick Start app works just fine, but I cant configure my CLI projects the same way. Any help?
Thanks!
Learn a little about grunt / gulp, I think that can help you here.
You need to call livereload.changed(files) when change happens. To do that see gulp-watch doc. (stackoverflow)
watch('**/*.css', function (files) {
livereload.changed(files)
});
https://css-tricks.com/gulp-for-beginners/
I have been working on a MVC 3 application on my laptop, which now has crashed. I have uploaded the newest edition of the site through the "Publish" method in VS2010. Is it possible to retrive the source code of the application? Because i cant see the Models or Controllers on the FTP.
Thanks
I have used a decompiler before to get back source code from a compiled website.
It doesnt give you the files all nicely ready to start developing again, it is a bit pain staking going through the decompiler and getting all the code you need out. But it can be done.
I cant remember which one i used, im sure a quick google will give you loads to choose from. I think there might even be one shipped with vs.
I have a javascript project that is still in development;
Then I have another rails project that will use the javascript project;
I would like to have in "my-rails-project/public/javascript/" the link to the other javascript project.
I would like to be able to make changes within the rails-project and affect the javascript-project.
Is this possible and how?
thanks (:
This is general Eclipse thing and not related to Aptana in particular.
Simply start creating a new Folder and on the wizard page click "Advanced>>>", then choose Linked Folder and Browse to location of your javascript project.
That's it.
Cheers,
Max
Ive just made live a site for a client,
I need to now update it with both design and logic changes.
WHats the best way to do this? Never done it before.
I know I cant just overwrite the amended aspx and aspx.cs files, tried that and although the design changes take effect the coding doesnt.
Any info appreciated
thanks
You need to rebuild the binary in Visual Studio, and upload the DLL to the bin folder. The cs files don't even need to live on the server.