netbeans-7.3

Netbeans navigator does not show my JavaScript Class methods

混江龙づ霸主 提交于 2019-12-11 12:39:35
问题 Some background, skip to the 2nd paragraph to get to the question. I have tried quite a few editors like your typical developer and still my all-time favorite was Homesite/ColdFusion Studio before it was sucked into Dreamweaver and I trust most of you will agree with me that well, yea.. Dreamweaver. Anyway, I've been running Sublime Text 2 and it's ok but I feel I need more of an IDE than a text editor. To that end I have been using NetBeans for a few months. I'm starting to love it. At home

How to force netbeans html autocompletion to use double quotes instead of single quotes?

一个人想着一个人 提交于 2019-12-10 14:29:27
问题 I am using NetBeans 7.3 and I like its autocompletion features. However in this new 7.3 version, when I type <script src= it creates automatically two single quotes like this: <script src='|' . However I need these quotes to be double quotes: <script src="|" . I have looked everywhere in configs and did not find a way how to force NetBeans to use double quotes instead of single ones. Anybody knows any way or workaround ? Thanks in advance for any hints and help. 回答1: I found the answer by

Netbeans-PHPUnit “No tests executed” error

送分小仙女□ 提交于 2019-12-05 23:43:51
问题 I am newbie to any kind of testing. I just installed pear and PHPUnit using this doc. I use netbeans 7.3.1. I also installed skeletongenerator running this command : pear install phpunit/PHPUnit_SkeletonGenerator . I Followed the steps listed in this testing with PHPUnit to integrate PHPUnit to netbeans. As described in Installing PHPUnit section of that doc, by clicking search button under Netbeans->preferences->unit testing my netbeans recognizes PHPUnit installation. I followed all the

Netbeans-PHPUnit “No tests executed” error

痴心易碎 提交于 2019-12-04 05:29:17
I am newbie to any kind of testing. I just installed pear and PHPUnit using this doc . I use netbeans 7.3.1. I also installed skeletongenerator running this command : pear install phpunit/PHPUnit_SkeletonGenerator . I Followed the steps listed in this testing with PHPUnit to integrate PHPUnit to netbeans. As described in Installing PHPUnit section of that doc, by clicking search button under Netbeans->preferences->unit testing my netbeans recognizes PHPUnit installation. I followed all the steps to add sample Calculator project and generate test class. I did that. But when I run the tests by

PHP-Netbeans: How to change formatting for multi-conditional if statements

假如想象 提交于 2019-12-01 02:59:59
问题 I have the following Code: if( condition1 && condition2 && condition3 ) { // do something } And after having netbeans reformat it i get if( condition1 && condition2 && condition3 ) { // do something } which is not what I want. I already tried changing Editor>Formatting>PHP>Wrapping>If Statement - but I could not even figure out what this option does, but at least it seems not to solve my issue. How can I make netbeans format multiconditonal ifs as I like them (or just leave them as they are)?

Struts 2 #{} giving compilation error in Netbeans 7.3

时间秒杀一切 提交于 2019-11-28 13:09:57
I'm using Netbeans 7.3 and I've created a maven Struts 2.3 project. Everything else seems fine, except when I write in JSP something like this : <s:select list="#{'-1':'All Activity','0':'Posts Only','1':'Trades Only'}" The above code gives error in JSP. Although it used to work fine in 6.9 Seems like a bug to me. Any help would be really appreciated. I've already posted a comment about it on the plugin page, although doesn't seem to me like a plugin issue or so, since maven has nothing to do with NB plugins AFAIK. In the code above the list is populated using OGNL expression. That is valid

Struts 2 #{} giving compilation error in Netbeans 7.3

混江龙づ霸主 提交于 2019-11-27 07:32:46
问题 I'm using Netbeans 7.3 and I've created a maven Struts 2.3 project. Everything else seems fine, except when I write in JSP something like this : <s:select list="#{'-1':'All Activity','0':'Posts Only','1':'Trades Only'}" The above code gives error in JSP. Although it used to work fine in 6.9 Seems like a bug to me. Any help would be really appreciated. I've already posted a comment about it on the plugin page, although doesn't seem to me like a plugin issue or so, since maven has nothing to do