This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 63871 - Move cursor to predefine position after insertion
Summary: Move cursor to predefine position after insertion
Status: VERIFIED WONTFIX
Alias: None
Product: javaee
Classification: Unclassified
Component: Palette (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@javaee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-08 12:11 UTC by Jiri Skrivanek
Modified: 2016-07-07 08:58 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jiri Skrivanek 2005-09-08 12:11:03 UTC
Cursor should be in position where developer can immediatelly continue in
creation of code. Suggested positions are as follows:

a) applies for default pattern
b) applies for filled values

--------- JSP ---------

Use Bean

a) <jsp:useBean id="|
b) <jsp:useBean id="mybean" scope="request" class="a.MyBean" />
   |

Get Bean Property

a) <jsp:getProperty name="|
b) <jsp:getProperty name="mybean" property="a" />
   |

Set Bean Property

a) <jsp:setProperty name="|
b) <jsp:setProperty name="mybean" property="a" value="a" />
   |

JSTL Choose

       <c:choose>
           <c:when test="|
 
JSTL If

a) <c:if test="|
b) <c:if test="a">
       |

JSTL For Each

a) <c:forEach var="|
b) <c:forEach var="b" items="a">
       |

--------- Database ---------

DB Query

a) <sql:query var="|
b) <sql:query var="a">
       SELECT a FROM table
   </sql:query>
       |

DB Report

        <sql:query var="result">
        ...
        <table>
        ...
        </table>
        |

DB Insert/Update/Delete

        <sql:update var="">
            INSERT INTO table_name (column1, column2,...)
            VALUES (value1, value2,....)
        </sql:update>
        |
Comment 1 Libor Kotouc 2005-11-22 16:21:56 UTC
fixable in 5.0
Comment 2 Jaroslav Pospisil 2006-03-13 13:43:15 UTC
TM 5.0->TBD
Comment 3 Jiri Prox 2008-04-11 01:10:11 UTC
moving opened issues from TM <= 6.1 to TM=Dev
Comment 4 Martin Balin 2016-07-07 08:52:57 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss