Hi,
You can specify url like mymakexml.ashx , and generate dynamic xml at server side.
If you want to generate dynamc data in client side , you can try this :
Please try this code
- function RichTextEditor_OnLoad(editor)
- {
- editor.LoadLinks(function(group)
- {
- group.groups.push({
- text:"mygroup",groups:[],links:[
- {text:"microsoft",href:"http://www.microsoft.com/"}
- ]
- });
- group.links.push({
- text:"google",href:"http://www.google.com/"
- });
- });
- }
Also , you can send some dynamic data from server to javascript at first , and then add it via javascript.
Regards,
Terry