Changing the pointing arrow of the error prompt in Semantic UI

37 Views Asked by At

I am trying to change the pointing arrow of the error prompt in Semantic UI. The defualt is above and I want it below. In React you can use pointing below but is doesn't work if not using React. That's my code:

$('.ui.form').form({
fields: {
  available: {
    identifier: 'available',
    rules: [
      {
        type: 'atLeastOneChecked',
        prompt: 'Please select at least one',
        pointing: 'below'
             
      }, ],
       },}
0

There are 0 best solutions below