PDA

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


bhaidaya
07-17-2007, 07: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
07-17-2007, 10: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
07-18-2007, 12:19 AM
in Ext.nd.UIView.prototype.init

blankText: "Search view...",

should be

emptyText: "Search view...",