Loading...

RE: Toolbar Extra Final Separator

RE: Toolbar Extra Final Separator

#7454
Anonymous
Anonymous
Participant

Hello,

n

I can reproduce this case. As a workaround, you can try to add some script to modify this element:

n

    n

  1. Add a HTML Form Web Part into the page;
  2. n

  3. Edit this web part source;
  4. n

  5. Add below code into the text editor:
  6. n

n

<script>

n

$telerik.$(document).ready(function(){

n

$telerik.$('.rmSeparator').last().removeClass('rmSeparator');

n

});

n

</script>

n

    n

  1. Save all;
  2. n

n

That script will find the last separator and clear its class.

n