I'm implementing PropertyGrid and have used the demo files code.
The grid does not display and I get the error:
Object doesn't support property or method 'propertygrid'
This is raised from the line $('#pg').propertygrid('appendRow', row) in the function below.
I see that easyloader.js hosts 'propertygrid' and easyloader.js is loaded via <script src...
What am I missing??!
function PopulatePropertyGrid() {
var row = {
name: 'AddName',
value: '',
group: 'Marketing Settings',
editor: 'text'
};
$('#pg').propertygrid('appendRow', row);
}
EasyUI

