I need 'Range' Mode!!!
But I found that I couldn't set date range simply like:
K.setSelected(['2014-01-01','2014-01-05'],false);
Because K._sel is not empty!!I need to click this button twice to get what I want
Finally I Solved this problem by :
K._sel = [];
K.setSelected(['2014-01-01','2014-01-05'],false);
I don't know whether this is a bug or we have other ways to deal with it?
I need 'Range' Mode!!! But I found that I couldn't set date range simply like:
K.setSelected(['2014-01-01','2014-01-05'],false); Because K._sel is not empty!!I need to click this button twice to get what I want Finally I Solved this problem by : K._sel = []; K.setSelected(['2014-01-01','2014-01-05'],false); I don't know whether this is a bug or we have other ways to deal with it?