Hi,
When I load some page content into a widget (i.e. a jqxPanel) using the load method, how can I pass some parameters to this page.
For exemple, I’m doing this:
$("#MainContent").jqxPanel({
theme: tema,
height: '100%',
width: '100%',
sizeMode: 'fixed',
autoUpdate: 'true'
});
$("#MainContent").load('MainPanel.html?test');
I wanna receive the string ‘teste’ as a paramenter to be used by the “MainPanel” page to build his content, that will be loaded into the “MainContent” panel.
I saw thist topic http://www.jqwidgets.com/community/topic/switching-themes/ and tryed to adapt the function getTheme there to do this, but the ‘window.location.toString()’ method only return de URL until the MainPanel.html, without the “?test” appended.
Can someone tell how I do this?
Thanks in advance.
Cristiano Ferrari