about multi-hyperlink planceholder design
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > Microsoft Content Management Server > about multi-hyperlink planceholder design




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    about multi-hyperlink planceholder design  
andrew007


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-11-05 10:53 PM

I am trying to create link placeholder (to host multiple hyperlinks - just
link in sharepoint - related links) extened from xmlplanceholder.
Basically this control does the following.
1. in authoring mode
- display multiple previously added links (in each link there is edit and
delete hypertext next to links)
- there is 'Add New' button to add a new url link
2. In edit mode  (when author click add new button or edit text)
- it displays display name textbox and hyperlink Url textbox
- it also has 'Add' button
3. in presentation mode
- display multiple links (previously added)

Since this is a bit different from basic flow of placeholder control (for
example since adding multiple instance of links requires post back
communication without using 'save' in console) I need some feedback to
architect this placeholder. Appreciate your feedback in my designing this
control.





[ Post a follow-up to this message ]



    Re: about multi-hyperlink planceholder design  
Stefan [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-11-05 10:53 PM

Hi Andrew,

check out this article:
http://blogs.technet.com/stefan_gos...2/07/41861.aspx

It shows how to do this for multiple attachements.

Cheers,
Stefan

--
This posting is provided "AS IS" with no warranties, and confers no rights

New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
----------------------


"andrew007" <gahdhi@yahoo.com> wrote in message
news:D1AC9B84-3F4D-465D-A671-59E198B05679@microsoft.com...
>I am trying to create link placeholder (to host multiple hyperlinks - just
> link in sharepoint - related links) extened from xmlplanceholder.
> Basically this control does the following.
> 1. in authoring mode
> - display multiple previously added links (in each link there is edit and
> delete hypertext next to links)
> - there is 'Add New' button to add a new url link
> 2. In edit mode  (when author click add new button or edit text)
> - it displays display name textbox and hyperlink Url textbox
> - it also has 'Add' button
> 3. in presentation mode
> - display multiple links (previously added)
>
> Since this is a bit different from basic flow of placeholder control (for
> example since adding multiple instance of links requires post back
> communication without using 'save' in console) I need some feedback to
> architect this placeholder. Appreciate your feedback in my designing this
> control.







[ Post a follow-up to this message ]



    Re: about multi-hyperlink planceholder design  
andrew007


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-12-05 01:48 AM

do you happen to know any sample how to customize xmlplaceholder to save
multiple instance of data (list of hyperlinks) without going through console
edit mode?

"Stefan [MSFT]" wrote:

> Hi Andrew,
>
> check out this article:
> http://blogs.technet.com/stefan_gos...2/07/41861.aspx
>
> It shows how to do this for multiple attachements.
>
> Cheers,
> Stefan
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
> New to MCMS?
> Check out this book: Building Websites Using MCMS: [url]http://tinyurl.com/6zj44[/url
]
> ----------------------
>
>
> "andrew007" <gahdhi@yahoo.com> wrote in message
> news:D1AC9B84-3F4D-465D-A671-59E198B05679@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Re: about multi-hyperlink planceholder design  
Stefan [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-12-05 10:57 PM

Hi Andrew,

please explain with more words.
Not sure what you are trying to achieve and where you got problems with your
approach.

Cheers,
Stefan

--
This posting is provided "AS IS" with no warranties, and confers no rights

New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
----------------------


"andrew007" <gahdhi@yahoo.com> wrote in message
news:72D38964-6CE9-417B-A890-2FAD1619F7A3@microsoft.com...[vbcol=seagreen]
> do you happen to know any sample how to customize xmlplaceholder to save
> multiple instance of data (list of hyperlinks) without going through
> console
> edit mode?
>
> "Stefan [MSFT]" wrote:
> 







[ Post a follow-up to this message ]



    Re: about multi-hyperlink planceholder design  
andrew007


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-12-05 10:57 PM

Basically,
I have a control (inherited from baseplaceholder: xml definition type) in a
template page to save related link information. It has textboxs for link nam
e
and link url. But it can capture only one data. But my goal is to make to
capture multiple links to display list of links. To achieve this goal I gues
s
I might have to enable existing placeholder to caputre multiple links (one b
y
one) and keep track of existing links...I just looks for best practice for
how to achieve this.....

"Stefan [MSFT]" wrote:

> Hi Andrew,
>
> please explain with more words.
> Not sure what you are trying to achieve and where you got problems with yo
ur
> approach.
>
> Cheers,
> Stefan
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
> New to MCMS?
> Check out this book: Building Websites Using MCMS: [url]http://tinyurl.com/6zj44[/url
]
> ----------------------
>
>
> "andrew007" <gahdhi@yahoo.com> wrote in message
> news:72D38964-6CE9-417B-A890-2FAD1619F7A3@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Re: about multi-hyperlink planceholder design  
Stefan [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
08-12-05 10:57 PM

Hi Andrew,

why are you only able to capture one data?
Don't you render mulitple text box child controls from your custom
placeholder control?

You will be able to gather multple different URLs at once using such an
approach.

Cheers,
Stefan

--
This posting is provided "AS IS" with no warranties, and confers no rights

New to MCMS?
Check out this book: Building Websites Using MCMS: http://tinyurl.com/6zj44
----------------------


"andrew007" <gahdhi@yahoo.com> wrote in message
news:22B017AD-C2B6-4118-8A8D-830578E16EEC@microsoft.com...[vbcol=seagreen]
> Basically,
> I have a control (inherited from baseplaceholder: xml definition type) in
> a
> template page to save related link information. It has textboxs for link
> name
> and link url. But it can capture only one data. But my goal is to make to
> capture multiple links to display list of links. To achieve this goal I
> guess
> I might have to enable existing placeholder to caputre multiple links (one
> by
> one) and keep track of existing links...I just looks for best practice for
> how to achieve this.....
>
> "Stefan [MSFT]" wrote:
> 







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 08:01 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register