Is there anyway in code-behind to reorder or move the toolbar buttons around on the toolbar at run-time?
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);