Declined
Last Updated: 20 Mar 2024 12:22 by ADMIN
Ha Minh Nguyet
Created on: 20 Mar 2024 11:05
Category: Kendo UI® for Vue
Type: Bug Report
0
Native Input Componnent: clear Button isn't shown when attribute showClearButton is 'true'
Hello,
 clear Button isn't shown when attribute showClearButton is 'true'.
<template>
  <div>
    <div class="col-xs-12 col-md-6 example-col">
      <p>Input</p>
      <KInput :style="{ width: '330px' }" :show-clear-button="true"></KInput>
    </div>
  </div>
</template>
<script>
import { Input } from '@progress/kendo-vue-inputs';

export default {
  components: {
    KInput: Input,
  },
};
</script>

1 comment
ADMIN
Konstantin Dikov
Posted on: 20 Mar 2024 12:22

Hi Ha,

Thank you for reaching out to us.

The showClearButton for the Input component is deprecated and is moved to the TextBox component:

      <KInput :style="{ width: '230px' }" :show-clear-button="true"></KInput>
    </div>
  </div>
</template>
<script>
import { TextBox } from '@progress/kendo-vue-inputs';

export default {
  components: {
    KInput: TextBox,

I will contact the team to see why the property is still visible in the documentation and we will remove it accordingly. 

 

Regards,
Konstantin Dikov
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Kendo family, check out our getting started resources