Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - arejae

Pages: [1]
1
New Community Members / Re: From Indonesia With Love
« on: March 10, 2009, 03:48:48 am »
Hi saynt, Im azam from Malaysia.

Yes, OpenGoo is cool.

2
Applications / Re: "Hello World!" application
« on: March 07, 2009, 03:20:52 am »
Hi , I just want to share the code that i used for creating the HelloWorld application using 1.3-beta version.

everything is the same except for the changes that need to be done in layout.js file.

Code: [Select]
......
og.panels.reporting = new og.ContentPanel({
title: lang('reporting'),
id: 'reporting-panel',
iconCls: 'ico-reporting',
refreshOnWorkspaceChange: false,
defaultContent: {
type: "url",
data: og.getUrl('reporting','index')
}
}),
/** New HelloWorld Tab Here  **/
og.panels.helloworld = new og.ContentPanel({
title: lang('helloworld'),
id: 'helloworld-panel',
iconCls: 'ico-helloworld',
refreshOnWorkspaceChange: true,
defaultContent: {
type: "url",
data: og.getUrl('helloworld','index')
}
})

thanks to everyone

Pages: [1]