Ticket Q141866
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Focus Filter by text tool bar item on showing a list view

How to set focus to FullTextSearchBox by code?

created 16 years ago

Hello,
I would like to clear the fulltext searchbox and place the focus in the box (by code).
My first line:
- Frame.GetController<FilterController>().FullTextFilterAction.Value = null;
Can you help me with the second one? This line should place the cursor in that box.
thanks
reinhold

Comments (3)
Anatol (DevExpress) 16 years ago

    Hello Reinhold,
    Please refer to a similar Support Center issue: ID Q98690 (Focus Filter by text tool bar item on showing a list view).
    Please let me know if you need any further help.
    Thanks,
    Anatol

    RE RE
    Reinhold Erlacher 16 years ago

      Hello,
      I have managed to catch the ItemLink of fulltextsearch, but neither
      itemLink.Focus();
      nor
      manager.SelectLink(itemLink);
      do work.
      I'm using this code:
      BarManager manager = template.BarManager;
                          if (Frame.Template != null)
                              foreach (IActionContainer container in Frame.Template.GetContainers())
                                  if (container is ActionContainerBarItem)
                                  {
                                      ActionContainerBarItem actionContainerBarItem = (ActionContainerBarItem)container;
                                      foreach (BarItemLink itemLink in actionContainerBarItem.ItemLinks)
                                          if (itemLink.Item.Tag.ToString().Contains("FullTextSearch"))
                                          {
                                              itemLink.Focus();
                                              manager.SelectLink(itemLink);
                                          }
                                  }
      can you help me?
      thanks
      reinhold

      Anatol (DevExpress) 16 years ago

        Hello Reinhold,
        To accomplish your task, you can use the BarItem.PerformClick method, as shown in following code:

        C#
        if (Frame.Template is DevExpress.ExpressApp.Win.Templates.MainForm) { BarManager manager = ((MainForm)Frame.Template).BarManager; manager.Items["Filter by Text"].PerformClick(); }

        Please let me know if you need any further help.
        Thanks,
        Anatol

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.