简体   繁体   中英

yadcf range_number_slider currency format

I am using mvc aps.net, I get my data from the model, and when formatting the table I assign the currency format as follows:

<td class="centertext">
                @Html.Encode(item.AMOUNT.Value.ToString("C", System.Globalization.CultureInfo.GetCultureInfo("en-us")))
            </td>

Trying to use a range_number_slider filter as follows, is unsuccessful.

        {
            column_number: 5,
            filter_type: "range_number_slider"
        }

The filter does not appear, if I remove the currency format it works perfect.

Is there a way to do it with the currency format?

With Version: 0.9.4.beta.45

https://github.com/vedmack/yadcf/blob/master/src/jquery.dataTables.yadcf.js

And this:

       {
            column_number: 5,
            filter_type: 'range_number', ignore_char: '\\,|\\$'
            
        }

Works perfectly!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM