autocomplete xml attributes using eclipse

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

autocomplete xml attributes using eclipse

Chris Snow-3
When developing ofbiz xml artifacts in eclipse, I am frequently using
the xml autocomplete.

Unfortunately, the attributes returned by autocomplete don't always seem
to be in the best order and I have to manually reorder them.

The eclipse returned element for if-compare:

   <if-compare operator="less" value="" field=""></if-compare>

The manually reordered element:

   <if-compare field="" operator="less" value=""></if-compare>

Is this just me who experiences this inconvenience?

Many thanks in advance,

Chris
Reply | Threaded
Open this post in threaded view
|

Re: autocomplete xml attributes using eclipse

David E. Jones-2

Life is tough, isn't it?

You could look for a setting, or you might need to use a different XML editor.

-David


On Jan 21, 2010, at 11:40 AM, Chris Snow wrote:

> When developing ofbiz xml artifacts in eclipse, I am frequently using the xml autocomplete.
>
> Unfortunately, the attributes returned by autocomplete don't always seem to be in the best order and I have to manually reorder them.
>
> The eclipse returned element for if-compare:
>
>  <if-compare operator="less" value="" field=""></if-compare>
>
> The manually reordered element:
>
>  <if-compare field="" operator="less" value=""></if-compare>
>
> Is this just me who experiences this inconvenience?
>
> Many thanks in advance,
>
> Chris