I am creating a reservation website with code igniter, but I am having a problem because I want to use metro css instead of bootstrap. how can I do that? thanks in advance. :) I want to know if using metro css is possible with code igniter. Please help me. I will really appreciate. Thanks.
You can use custom Meto CSS library which you can download from here
github.com
Introduction
Code Metro (Codeigniter Metro UI CSS) kick starts the development process of the web development process by including Metro UI CSS into CodeIgniter. With this custom Codeigniter framework, you can make a site with an metro UI interface. It also includes certain libraries such as AWS and Facebook in-case you are developing applications requiring those SDKs. Now start working on your idea.
Note: There are lot configurations to be done. So to through link carefully.
Related
Currently I'm using codeigniter4 How can I integrate? please define briefly I'm a fresher.
No this is not possible. PhoneGap is HTML and Javascript based. Your PHP code won't run.
Even if you would have a HTML/JS project only you wouldn't be able to use it 1-on-1. You would have to implement PhoneGap hooks etc. to make it run properly.
i have got the project but someone told me to use ionic framework so
can we make web application using ionic framework?
and official website is telling that it is using for creating mobile application
so i am little confused
Well, yes you can create a fully-fledged application using Ionic; it's just that it's better suited for mobile applications. It's built on top of Cordova, so it's a little better with mobile applications.
I have tried it personally in the past, and it's amazing. The tools the Ionic Community provides makes building applications a lot more fun. Yes, you'll have to override a couple of classes to get the look you desire, but otherwise, it's possible.
But remember, just because soccer has a goalie, it doesn't mean you can't score.
The framework is made for developing Hybrid apps with the use of native functionality with ngCordova. That being said, if you like the framework you can just run it from your desired hosting platform since it is basicly just javascript, and angular, with the bootstrap like Ionic tags for styling.
You cant use the ngCordova functionality from a browser though.
The real questing is, what do you need to build. You might just be better of making a MEAN stack web application,if you dont have any use for the Ionic functionality, and just choose your own styling template, like mentioned, Bootstrap.
I have HTML Template. I want to integrate that template to Magento theme. I have searched over google as well as here(Stack-Over-Flow). But not getting proper documentation for that. Any help will appreciated. Thanks in advance.
Ok You want to integrate the static HTML template to the magento theme. So let's divide things you need to learn and how to learn efficiently.
Magento can be basically divided into three parts:
Admin panel: As you know magento is a CMS so most of the basic things could be managed from backend.For example static pages and Home pages could be managed from "CMS Pages" from admin panel.
Next is theming: You have mentioned about the MagentoDesignGuide.pdf this could be the start. I recommend you to have a look for the youtube channel of leveluptuts for the theming(layouts).This is very important for structuring your pages and site.You can follow other also but i prefer that because i also learnt from it and was very helpful.
Another is the module development portion.In some cases you need to develop custom modules .So this would be the last part.There are great tutorial provided by Inchoo and Smashing Magzine for developing custom module.
All of these things are required to fully develop a magento site. If you understand this than you will do great in magento.
Hope this answer provides you with the idea of how to proceed further and also helps you to divide the way of learning Magento.
Happy Coding.
So I do freelance iPhone app development, and I need to a build a small website showing my company;s name and the apps I already deployed in apple app store, plus some images of my previous clients.
I started playing with ruby on rails, and setup a skeleton app on heroku, its live and works.
My problem is I don't know how to create a lot of things in Web, like scrolling left to right,
or adding a band that has icons. I don't know what should be the next thing to learn? should I readup on html and css? or is this a RoR functionality?
Anyone can guide me in the direction of a sample protfolio website in RoR?
Thanks.
If I were you I'd leave Rails out of this equation altogether until you have HTML and CSS nailed down - you're going to add in a large layer of unneeded complexity if you try and start with a server-side framework like Rails before you understand the basics of building web pages.
I believe that http://net.tutsplus.com has free beginning HTML and CSS courses that should be more than enough to get you up to speed.
Ruby on Rails is just the framework for the site. The flashy stuff you see on websites comes from javascript, css, html, etc. If you have the website functioning properly and are now looking to create the flashy pages to show off your apps, I'd suggest getting into javascript and css.
I guess your application is a collection of static HTML/Web pages which has some data(text, images).
So I guess you really don't need a scripting language or framework to develop your site.
Having grip on HTML, CSS, JavaScript, JQuery will do everything up to my knowledge.
Hello Fellow developers,
I am embarking on a new journey to develop HTML5/JS web site and looking a ways to reuse the same code for Mobile App (Would like to use it using PhoneGap or Appcelerator). The requirement is to develop once which can be used on desktop, and smartphones, but project sponser wants more secure way to handle data on smartdevices and hence we would like to choose this approach. Now my questions is
Can we reuse and architect the solution this way to reuse HTML5/jQuery code on Mobile within Appcelerator or Phonegap?
If yes, what percentage of rework will be required to support on mobile devices?
If no, what could be alternatives?
thanks all for your guidance.
(1).
If your current desktop website interact with server-side in webservice way,everything will be done very easy. Even you can directly modify the *.java in src\com\ like this:
super.loadUrl("http://balabalabala.com");
With phonegap wrap, your app can be access right now.
If not, you will need spend time in implementing the server-side interfaces for client-side.
(2).
You need to refactor your static html page with some javascript framework for mobile(such as jquery mobile,sencha touch).
Using them to make your phonegap app more simalar with native app.
That takes time too.
The 2 things above are what you need rework.
I hope you are planning to build a mobile website. If so, its very easy to convert it to a PhoneGap app with may be only 5% changes provided your website uses only HTML5,JS and CSS. Its not possible to run a a website written in serverside languages such as PHP, ASP.NET, ruby etc. Some important items to keep in mind:
start development of website and app together. test with mobile browser and phonegap so that you can fix issues as and when they arise.
use a mobile HTML5 based framework like Kendo UI Mobile/ jQuery Mobile etc for developement
so that you dont spend time fixing all the mobile related UI stuff.
Wherever you are using PhoneGap features, check whether you are running on PhoneGap or else fall back to the browser feature.