Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2320
Move or Reorder toolbar buttons dynamically
posted

Is there anyway in code-behind to reorder or move the toolbar buttons around on the toolbar at run-time? 

Parents
No Data
Reply
  • 5389
    posted

    nuhfeken,

    There's no Move() method, however there are Remove() and Insert() methods off of the WebToolbar's Items collection.  The code would look something like:

    // code to get a reference to the Item I want to remove

    this.UltraWebToolbar1.Items.Remove(item);

    this.UltraWebToolbar1.Items.Insert(index I want to insert to, item);

Children
No Data