Results 1 to 2 of 2

Thread: Positioning the tool bar buttons

  1. #1

    Default Positioning the tool bar buttons

    I have an application, where I am having several buttons on the tool bar, they appear in the sequence mentioned in the commands-context.xml file, I want to have a Logo button (on tool bar) to appear on the extreme right corner of the tool bar. If I append/add the new logo Command to the list of toolbar in the commands-context.xml file, it appears just after the last toolbar button. Does anybody have answer for it?

    Thanks in Advance.

  2. #2

    Default Got the Answer "
    <bean id="toolBar" class="org.springframework.richclient.command.Comm andGroupFactoryBean">
    <property name="members">
    <list>
    <value>save</value>
    <value>print</value>
    <value>new</value>
    <value>....<value>
    .
    .
    .
    <value>glue</value>
    <value>logoCommand</value>
    </list>
    </property>
    </bean>

    Putting <value>glue</value> placed the logo button at the end of the toolbar.


Similar Threads

  1. Replies: 9
    Last Post: Apr 24th, 2007, 06:59 AM
  2. Replies: 7
    Last Post: Nov 30th, 2005, 09:27 AM
  3. suggestions for web test tool?
    By ctassoni in forum Architecture
    Replies: 12
    Last Post: Oct 26th, 2005, 05:38 AM
  4. Replies: 1
    Last Post: May 23rd, 2005, 02:56 PM
  5. Transparent persistence tool and DAO pattern
    By scesbron in forum Architecture
    Replies: 1
    Last Post: Jan 10th, 2005, 10:54 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •