Search the Community
Showing results for tags 'editor'.
-
Hello - I'm far enough into the book to discover other than the fact that IDEs are frequently mentioned in how to create or edit php files ("use text editor or IDE"), there is no explanation of what an IDE is, how they are used, which ones are useful, or which one you recommend for starters. After searching the Internet to find what one was, I have download three of them, to see which best suits my needs and my learning curve tolerance. Still sorting through them, but they already are more useful than a simple text editor, especially for a beginner such as myself. That said, would you mind answering those "missing" questions here? Being on a budget, I am exploring three free ones: Netbeans, Eclipse, and CodeLite Thanks, Dale
-
Hey guys I am using imperavi-redactor-widget and i am having problem with toolbar Yii::import('ext.imperavi-redactor-widget.ImperaviRedactorWidget'); $this->widget('ImperaviRedactorWidget', array( // you can either use it for model attribute 'model' => $model, 'attribute' => 'description', // or just for input field 'name' => 'description', // some options, see http://imperavi.com/redactor/docs/ 'options' => array( 'lang' => 'en', //'toolbar' =>'' , 'iframe' => true, 'buttons'=>array( 'formatting', '|', 'bold', 'italic', 'deleted', '|', 'unorderedlist', 'orderedlist', 'outdent', 'indent', '|', 'image', 'video', 'link', '|', 'html', ), 'css' => 'wym.css', ), 'plugins' => array( 'fullscreen' => array( 'js' => array('fullscreen.js',), ), 'clips' => array( // You can set base path to assets 'basePath' => 'application.components.imperavi.my_plugin', // or url, basePath will be ignored //'baseUrl' => '/js/my_plugin', 'css' => array('clips.css',''), 'js' => array('clips.js',), // add depends packages 'depends' => array('imperavi-redactor',), ), ), )); It is showing only 1 button, in this case 'formatting' button. and onchange function doesnot seems to be wroking on this ? any ideas? Thanks