I have a page(mypage) and a component(mycomponent) on that page which gets its content from the page properties. I am trying to provide an authoring interface for the "mycomponent" which will let the author edit corresponding page properties without creating any component level properties. Any help on this is much appreciated. Thanks in advance.
one way of handling this is to get the input from your 'mycomponent' and in the jsp, read the value and set them for the corresponding page properties accessing Page API. So from the authoring perspective, they will be handling the page properties through the component.
U can just extend out of the box page component so that you can use that dialog. In mycomponent.jsp try to maintain same data and properties using Node and Page API.
one way of handling this is to get the input from your 'mycomponent' and in the jsp, read the value and set them for the corresponding page properties accessing Page API. So from the authoring perspective, they will be handling the page properties through the component.