Ram Patel
Ram Patel

Reputation: 151

Extjs4 GridPanel data is not loading

When i am using multiple url within proxy for GridPanel,Data is not loaded in the grid but when i open javascript console from crome, it is being load. i am using below.

storename.getProxy().url = 'myurl';

How to resolve this issue? Thanks in advance.

Upvotes: 1

Views: 409

Answers (2)

Kunal
Kunal

Reputation: 1024

i think put layout: 'fit' in parent container of GridPanel will solve this issue too.

Upvotes: 1

scebotari66
scebotari66

Reputation: 3480

i hope after you're setting the proxy

    storename.getProxy().url = 'myurl';

you load the store again

    storename.load();

and about the store, does it have an url initially, does it have autoLoad.. just post some code dude!!

Upvotes: 1

Related Questions