EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Spike on October 28, 2016, 03:00:35 AM



Title: Textbox capitalize first character
Post by: Spike on October 28, 2016, 03:00:35 AM
Hello,

I want to capitalize the first character in a Textbox or Validate box;

This doesn't work;

<input class="easyui-textbox"  name="handelsnaam" data-options="required:true "  style="width:100%; text-transform: capitalize;" >

Can somebody help me?

Thanx in Advance.

Hans


Title: Re: Textbox capitalize first character
Post by: jarry on October 28, 2016, 08:58:08 AM
Please use this code instead.
Code:
<input id="handelsnaam" class="easyui-textbox"  name="handelsnaam" data-options="required:true "  style="width:100%;" >
<script type="text/javascript">
    $(function(){
        $('#handelsnaam').textbox('textbox').css('text-transform','capitalize');
    })
</script>


Title: Re: Textbox capitalize first character
Post by: Spike on October 29, 2016, 12:38:22 AM
Thanx Jarry!

It works! ;D