Hey there! I'm trying to incorporate a grid panel into my view using Extjs 4.1.1, but I keep encountering an error in the browser console that says "Cannot read property 'substring' of undefined". Below is the JavaScript code snippet I am using:
Ext.require([
'*'
]);
Ext.onReady(function(){
Ext.tip.QuickTipManager.init();
Ext.create('Ext.data.Store', {
storeId:'simpsonsStore',
fields:['name', 'email', 'phone'],
data:{'items':[
{ 'name': 'Lisa', "email":"<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="0a6663796b4a7963677a79..", "phone":"555-111-1224" },
{ 'name': 'Bart', "email":"<a hre..."
... etc ...
And here is the corresponding HTML code:
<div id="test"></div>