PDA

View Full Version : Fix for incorrect single category combo box items



bhaidaya
17 Jul 2007, 3:46 PM
in the Ext.nd.UIView.prototype.init function
replace the store proxy url


url: this.viewUrl + '?ReadViewEntries&CollapseAll&count=' + this.categoryComboBoxCount + '&randomizer='+new Date().getTime()

with this


url: this.viewUrl + '?ReadViewEntries&CollapseView&count=' + this.categoryComboBoxCount + '&randomizer='+new Date().getTime()

jratcliff
17 Jul 2007, 6:45 PM
Oops. :( Not sure what I was thinking with &CollapseAll instead of &CollapseView. Looks like the views I was testing against were all set to open collapsed and thus the reason I didn't catch it. I'll make sure this gets fixed right away.

bhaidaya
17 Jul 2007, 8:19 PM
in Ext.nd.UIView.prototype.init

blankText: "Search view...",

should be

emptyText: "Search view...",