Store data with ${offer} being replaced w/ Ext.Select("offer")
Store data with ${offer} being replaced w/ Ext.Select("offer")
I am displaying URLs (as hyperlinks) in a GridPanel from a Store (using JSON). One of the URLs has the following within the url:
Code:
id=${offer
This causes Ext-JS to rewrite it as:
Code:
Ext.select("offer"
and in the end causes a BADRESPONSE error. Is there any way to get around this? I can certainly do some encoding before displaying the url, but I do need the display to show the proper url (and the link to work, as well).
I also made a post on the Coolite forums about this here.