Coolite Examples Explorer

Page 1 of 2 12 LastLast
  1. #1

    Coolite Examples Explorer

    Hi,

    The Coolite Examples Explorer source code can be downloaded?

    The Extjs.com have this option to use in localhost. The same is made for the Extjs documentation.

    Where can be find?

    Thanks,


  2. #2

    RE: Coolite Examples Explorer

    https://examples2.ext.net/

    look at topo of the window, have one button, source code...
    click in this.

    tks
  3. #3

    RE: Coolite Examples Explorer

    *any chance that you can share how you deploy the files in the Northwind Subdirectories to VS 2008 projects?

    Thanks so much


    Andy
  4. #4

    RE: Coolite Examples Explorer

    I think what was being asked for here is the source code to the entire examples project. For me, the interest is in how the tree menu on the left launches the modules on the right. Any chance you can share the entire examples project?
  5. #5

    RE: Coolite Examples Explorer

    cmschick (2/15/2009) For me, the interest is in how the tree menu on the left launches the modules on the right.
    Me too, anyone have this kind of sample app ?
  6. #6

    RE: Coolite Examples Explorer

    Hy,

    Maybe you should look at the TreePanel Site map sample. Each node contains an URL and the function

    var loadPage = function(tabPanel, node)
    {
        var tab = tabPanel.getItem(node.id);
        if (!tab) 
        {
            tab = tabPanel.add(
            {
                id: node.id,
                title: node.text,
                closable: true,                    
                autoLoad: {
                    showMask: true,
                    url: node.attributes.href,
                    mode: 'iframe',
                    maskMsg: 'Loading ' + node.attributes.href + '...'
                }
            });
        }
        tabPanel.setActiveTab(tab);
    }
    open a new panel with the content of the node.attributes.href;

    Best regards Bernard J.

  7. #7

    RE: Coolite Examples Explorer

    The sample explorer is built like this (I assume)
    https://examples1.ext.net/#/TreePanel/Basic/SiteMap/

  8. #8

    RE: Coolite Examples Explorer

    FYI, the full source for the Examples Explorer will be released with the public release of the Coolite Toolkit v0.8.

    I'll post another update once everything is available to download.*




    Geoffrey McGill
    Founder
  9. #9

    RE: Coolite Examples Explorer

    When the Coolite Toolkit v0.8 released?
  10. #10

    RE: Coolite Examples Explorer



    https://examples2.ext.net/

    They're looking great. Lots of new features. Can't wait for the release...
Page 1 of 2 12 LastLast

Similar Threads

  1. Coolite Examples Explorer 0.8.2 Error Page
    By walle in forum 1.x Help
    Replies: 1
    Last Post: May 07, 2010, 4:07 PM
  2. Coolite Examples Explorer Error Page
    By matmani in forum Bugs
    Replies: 0
    Last Post: Dec 26, 2009, 10:23 AM
  3. Coolite 0.8 Examples Explorer not working
    By EzaBlade in forum 1.x Help
    Replies: 1
    Last Post: May 28, 2009, 7:08 PM
  4. Replies: 0
    Last Post: Feb 10, 2009, 7:12 AM
  5. Replies: 2
    Last Post: Nov 05, 2008, 12:21 AM

Posting Permissions