Rank: Newbie Groups: Member
Joined: 6/24/2009 Posts: 6 Location: Belgium
|
Hey,
I was wondering if it's possible to change the title displayed on top of a page, since all pages in the module share the title of that module. I got a module called Sales, but this title doesn't apply to all pages in that module.
Grtz, Xen.
|
Rank: Vidyano Team Groups: Customers
, Member, Vidyano Team
Joined: 11/20/2008 Posts: 3 Location: Belgium
|
Every pagecontroller has a ModuleTitle property. When this property is set, it overrides the default module title. The best place to set this property would be inside the OnActivated method on your pagecontroller. Code: this.ModuleTitle = "Your custom title";
|
Rank: Newbie Groups: Member
Joined: 6/24/2009 Posts: 6 Location: Belgium
|
Great  , I noticed there is also a ModuleDescription property available, I asume this allows me to change the subtitle as wel? Edit: Yup it does
|