We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Using Syncfusion docking with CAB

Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c Thanks, Jerry

16 Replies

DJ Daniel Jebaraj Syncfusion Team February 9, 2006 03:08 PM UTC

Hi Jerry, We are currently working on a sample. We will post an update early next week. Thank you for using Syncfusion products. Best regards, Daniel >Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? > >http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c > >Thanks, > >Jerry > >


JL Jerry Lawrence February 9, 2006 05:59 PM UTC

Wonderful! Will it be posted to this thread? >Hi Jerry, > >We are currently working on a sample. We will post an update early next week. > >Thank you for using Syncfusion products. > >Best regards, >Daniel > >>Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? >> >>http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c >> >>Thanks, >> >>Jerry >> >>


DJ Daniel Jebaraj Syncfusion Team February 9, 2006 06:52 PM UTC

Hi Jerry, Definitely! Best regards, Daniel >Wonderful! Will it be posted to this thread? > > > >>Hi Jerry, >> >>We are currently working on a sample. We will post an update early next week. >> >>Thank you for using Syncfusion products. >> >>Best regards, >>Daniel >> >>>Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? >>> >>>http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c >>> >>>Thanks, >>> >>>Jerry >>> >>>


SL Sebastien Lange February 10, 2006 04:59 PM UTC

Hi Daniel, Just to inform you that we are using CAB and Syncfusion as well ;-) And then waiting for samples. S. >Hi Jerry, > >Definitely! > >Best regards, >Daniel > >>Wonderful! Will it be posted to this thread? >> >> >> >>>Hi Jerry, >>> >>>We are currently working on a sample. We will post an update early next week. >>> >>>Thank you for using Syncfusion products. >>> >>>Best regards, >>>Daniel >>> >>>>Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? >>>> >>>>http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c >>>> >>>>Thanks, >>>> >>>>Jerry >>>> >>>>


GC Goh CH February 11, 2006 01:17 AM UTC

Hi Daniel, I am currently trying to use syncfusion together with CAB framework and my interest is on grid and treeview control. Thanks Regards, Seb


GC Goh CH February 15, 2006 08:02 AM UTC

Hi Daniel, Control used in CAB framework - recent articles on control from codeproject on dockableCabWorkspace. Interesting example.


AD Administrator Syncfusion Team February 17, 2006 06:59 AM UTC

>Hi Jerry, > >We are currently working on a sample. We will post an update early next week. > >Thank you for using Syncfusion products. > >Best regards, >Daniel > >>Has anyone used Syncfusion (specifically docking) with the Composite UI Application Block (CAB)? Better yet, is Syncfusion planning to add support for CAB? >> >>http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c >> >>Thanks, >> >>Jerry >> >>


DJ Daniel Jebaraj Syncfusion Team February 19, 2006 05:12 PM UTC

Just a quick update. We have a sample but need a day or two to fix some issues with it. We will post the sample soon. Best regards, Daniel


JL Jerry Lawrence March 6, 2006 07:51 PM UTC

Any update on when the sample will be posted? Thanks, Jerry


DJ Daniel Jebaraj Syncfusion Team March 7, 2006 06:38 PM UTC

Hi Jerry, We have a sample that uses Docking with CAB. Please find it enclosed. The sample uses SQL server. Please run the SQL script CABSampleAppScripts.sql and then change connection information in AddressBookModule\DataCollection.cs. We are working on other samples for the CAB and will post these here as they become available. Please let us know if you require any additional information. Best regards, Daniel >Any update on when the sample will be posted? > >Thanks, > >Jerry > >

SampleAddressBook_DM_f80a66b80.zip


JL Jerry Lawrence April 24, 2006 06:42 PM UTC

This solution shows the docking manager in the module rather that the Shell. Is there a way to create a custom docking workspace? When a view is added to the workspace it would be docked automatically. There is a CustomPanel.cs and CustomSPI.cs file in the download. Are these for creating a custom workspace that supports docking? Jerry


DJ Daniel Jebaraj Syncfusion Team April 24, 2006 10:31 PM UTC

Hi Jerry, We are looking into this and will post an update by Wednesday. Best regards, Daniel >This solution shows the docking manager in the module rather that the Shell. Is there a way to create a custom docking workspace? When a view is added to the workspace it would be docked automatically. > >There is a CustomPanel.cs and CustomSPI.cs file in the download. Are these for creating a custom workspace that supports docking? > >Jerry > > >


JL Jerry Lawrence May 1, 2006 09:32 PM UTC

Any progress on this? Thanks, Jerry >Hi Jerry, > >We are looking into this and will post an update by Wednesday. > >Best regards, >Daniel > >>This solution shows the docking manager in the module rather that the Shell. Is there a way to create a custom docking workspace? When a view is added to the workspace it would be docked automatically. >> >>There is a CustomPanel.cs and CustomSPI.cs file in the download. Are these for creating a custom workspace that supports docking? >> >>Jerry >> >> >>


VS Vijayanand S Syncfusion Team May 2, 2006 11:56 AM UTC

Hi Jerry, Sorry for the delayed response. You can use the DockableWorkSpace(Syncfusion.CAB.Workspace.dll) and DockingSmartPartInfo( Syncfusion.CAB.Common.dll) classes to dock a view automatically when it is added. Add the following code in Shell Form constructor: //Initialize DockableWorkSpace private DockableWorkSpace sideBarWorkspace; this.sideBarWorkspace = new DockableWorkSpace(this.dockingManager1,this); //Add a workspace in the workitem. this.workItem.Workspaces.Add(sideBarWorkspace, "sideBarWorkspace"); You have to add the following code in the Show method in the corresponding WorkItem : DockingSmartPartInfo smartPartInfo1 = new DockingSmartPartInfo(); smartPartInfo1.Title = "My Customers"; smartPartInfo1.ID = this.ID; //If you add the same type of Views for more than one item, you have to add a Unique ID through this SmartPart property. parentWorkspace.Show(customerSummaryView,smartPartInfo1); I have attached a sample with the Source code of the DockableWorkSpace and DockingSmartPartInfo. Please take a look at the sample and let me know if you have any questions. http://www.syncfusion.com/Support/user/uploads/DockingManager_CAB_26cc629e.zip. Thanks, Vijay


KO Ken Overton September 12, 2006 08:04 PM UTC

Does this sample require the CAB Extension Kit or does it include that code?


AD Administrator Syncfusion Team September 13, 2006 07:11 AM UTC

Hi Kov,

This sample does not requires CAB Extensibility Kit and it includes the code for DockWorkSpace. If you like to work with CAB Extensibility Kit beta, please open an incident in direct trac and we will send you download instructions.

Thanks for your interest in Syncfusion products.

Regards,
Geetha

Loader.
Live Chat Icon For mobile
Up arrow icon