Changes between Initial Version and Version 2 of Ticket #16646
- Timestamp:
- Jan 31, 2013, 1:37:04 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16646
- Property Owner changed from Douglas Hays to Pavneet Singh Gill
-
Property
Status
changed from
new
topending
-
Ticket #16646 – Description
initial v2 3 3 The JSP code I am using is : 4 4 5 {{{ 5 6 <td class="tableDetail" colspan="3"> 6 7 <div dojoType="dojox.data.QueryReadStore" jsId="orderSetStore" url="OrderSets.ajax?action=loadList" requestMethod="get"></div> 7 8 <input dojoType="dijit.form.FilteringSelect" id="orderSetList" name="orderSet" searchAttr="description" autocomplete="false" store="orderSetStore" pageSize="15" style="width: 300px"/> 8 9 </td> 10 }}} 9 11 10 12 On debugging the dojo code I have found that in file _SearchMixin.js … … 12 14 there is a condition on line 197: 13 15 16 {{{ 14 17 if(direction){ 15 18 options.start += res.length; … … 18 21 } 19 22 } 23 }}} 20 24 21 25 This condition makes my options.count = 0 whenever the start variable gets greater than the pageSize specified. This results in values not coming in the list. … … 28 32 29 33 30