Object Plugin : GridEx

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • reteset
    Indigo Rose Customer
    • May 2006
    • 1692

    Object Plugin : GridEx

    GridEx is an advanced grid object for AutoPlay Media Studio

    Features :
    • 17 different cell types to implement amazing grid applications
    • gradient theming for all grid cell types and tabs
    • fully customizable printing
    • support to customize grid cells individually
    • setting a bitmap image for grid cells
    • support to set custom font,border color,back color,alignment etc.. for the cells individually
    • support for the creating hybrid cell types with combination of cell styles
    • support for the cell joins to create non-grid like applications
    • full support for floating numbers (like currency etc..)
    • fully customizable cell editing and input-mask support for the edit fields
    • customizable object border style and background
    • advanced string search facilities
    • image list customization for checkbox,radio,sort arrow cell types
    • support to customize scrollbar behaviour
    • customizable tooltip support
    • and more..


    ScreenShot :



    Click Here For More Info
    amsplugins.com Is Closed.

    Facebook Page
  • Worm
    Indigo Rose Customer
    • Jul 2002
    • 3971

    #2
    Wow! Pretty!

    Very nice my friend.

    Comment

    • reteset
      Indigo Rose Customer
      • May 2006
      • 1692

      #3
      Originally posted by Worm View Post
      Wow! Pretty!

      Very nice my friend.
      Thanks for your coment
      It is nice to see you around
      amsplugins.com Is Closed.

      Facebook Page

      Comment

      • Centauri Soldier
        Indigo Rose Customer
        • Jun 2007
        • 1703

        #4
        Thanks for the release, reteset. It's on my list of software to buy.
        https://github.com/CentauriSoldier

        Comment

        • Ted Sullivan
          Indigo Rose Staff Member
          • Oct 2003
          • 963

          #5
          Very nice work!
          New Release: Setup Factory 9.6 adds Windows 11 compatibility and support for hardware token OV/EV Code Signing certificates.

          Comment

          • eleyea(sa)
            Forum Member
            • Aug 2009
            • 107

            #6
            As always , nice one reteset ,,.

            Comment

            • autoplmst6
              Indigo Rose Customer
              • Dec 2005
              • 223

              #7
              suggestions for reteset grid ex

              I have a key question targeted to the great Reteset:

              I was testing the demo for this plugin, and I was reading first of all the detailed help ( good work certainly ) you provided in the zip file...I cant see in the help any sort of GridEx.SetProperties and some parameter like "HideIDNumberRow" -only for hiding not disabled logically-...It would be cool to use for example: create a download resume windows with the sub-objetc progress inside GridEx without the number column ( regardless if the has numbers or not ) and leee visible all fields ( example; name file, status download, size, destination...). I think is ugly to see useless column number if you dont plan to use it for ...It is posible in some future update to do this?

              More suggestions apart I said earlier:

              1- GridEx.SetProperties ( only position, visibility, and anything you think cool )
              2- GridEx.Getproperties
              3- GridEx.SetVisible ( true -false )
              4- GridEx.IsVisible ( true -false )
              5- GridEx.SetPos ( true -false ) inside windows to move placing or anything
              6- GridEx.GetPos ( true -false )
              7- GridEx.HideRowIDNumber ( nameobject, RowIDNumber, true or false)
              8- GridEx.HideIDColumn ( nameobject, namecolumn, true or false)

              I think this plugin beat in all modes to ListboxEx and I think there is alot work made for this plugin Bravo!

              Comment

              • RTFM
                Forum Member
                • Sep 2010
                • 70

                #8
                3- GridEx.SetVisible ( true -false )
                4- GridEx.IsVisible ( true -false )
                5- GridEx.SetPos ( true -false ) inside windows to move placing or anything
                6- GridEx.GetPos ( true -false )
                for that you would use: (as all other plugins do)
                Plugin.SetVisible
                Plugin.IsVisible
                Plugin.SetPos
                Plugin.GetPos

                Comment

                • autoplmst6
                  Indigo Rose Customer
                  • Dec 2005
                  • 223

                  #9
                  oh f*ck I forgot the plugin actions lol ...I catn edit my old post :( well at least I will wait to Reteset to know what think about the item 7 and 8 from the list...

                  Comment

                  • reteset
                    Indigo Rose Customer
                    • May 2006
                    • 1692

                    #10
                    if you want to hide a fixed column , you can use
                    Code:
                    GridEx.SetSH_ColWidth("Plugin1", -1, 0);
                    if you want to hile all fixed columns , you can use
                    Code:
                    GridEx.SetSH_Width("Plugin1", 0);
                    if you want to hide a fixed row ,you can use
                    Code:
                    GridEx.SetTH_RowHeight("Plugin1", -1, 0);
                    if you want to hide all fixed rows , you can use
                    Code:
                    GridEx.SetTH_Height("Plugin1", 0);
                    where the -1 defines index of fixed row or column
                    fixed column and row indexes are counting to negative side

                    side and top headings (aka : fixed) are actually seperate grid windows
                    their initial visibility is not a missing feature or bug , but if you want to show or hide or modify them then you can do it with the provided functions
                    so , all normal grid actions apply to fixed columns or rows

                    here is an old sample project that i ported to GridEx & AMS-8 now
                    this sample project shows how to hide left fixed column and how to hide some rows with Expand cell type
                    Attached Files
                    amsplugins.com Is Closed.

                    Facebook Page

                    Comment

                    • autoplmst6
                      Indigo Rose Customer
                      • Dec 2005
                      • 223

                      #11
                      mmmm maybe I have not explained you correctly... I mean to hide or not the column where checkboxes are located ( If you see from the pic sample for progresstree )Anyway I will test those funcions you posted earlier I did't know that it can be done in those ways

                      Comment

                      • reteset
                        Indigo Rose Customer
                        • May 2006
                        • 1692

                        #12
                        checkbox column is not a fixed column
                        that column there because i added

                        if you do not want to show that column then you can join it to Expand cell (details..)
                        after made some changes in sample project
                        amsplugins.com Is Closed.

                        Facebook Page

                        Comment

                        • autoplmst6
                          Indigo Rose Customer
                          • Dec 2005
                          • 223

                          #13
                          Forgot this thread doh, reteset thanks for the info code you explained sorry for late reply

                          Comment

                          • 5tupot1
                            Forum Member
                            • Mar 2012
                            • 7

                            #14
                            Does anyone know how to adjust row height for multi-line cells.

                            I need the row height to adjust automatically to fit all the text in a multi-line cell.

                            Also i am having problems with printing. Need the document to scale down to A4 size paper.

                            Any Suggestions would be appreciated.

                            Comment

                            • reteset
                              Indigo Rose Customer
                              • May 2006
                              • 1692

                              #15
                              Originally posted by 5tupot1 View Post
                              Does anyone know how to adjust row height for multi-line cells.
                              .
                              this action sets the height of a row
                              Code:
                              GridEx.SetRowHeight("Plugin1", 0, 100);
                              Originally posted by 5tupot1 View Post
                              I need the row height to adjust automatically to fit all the text in a multi-line cell.
                              currently GridEx does not adjust row height automatically , there was a AutoSize cell type but it is not included to this version due to unexpected behaviours of that cell type
                              maybe i can add that cell type at next version

                              Originally posted by 5tupot1 View Post
                              Also i am having problems with printing. Need the document to scale down to A4 size paper.
                              i did not understand very well but , Plugin will split grid in to papers if it does not fit into paper

                              if the view of grid closer to A4 paper then , you can automatically scale down grid by setting a smaller font before printing the grid

                              On Setup :
                              Code:
                              def_font = GridEx.AddFont("Plugin1", "comic sans ms", 11, FW_THIN, false, false, false);
                              print_font = GridEx.AddFont("Plugin1", "comic sans ms", 5, FW_THIN, false, false, false);
                              GridEx.SetDefaultFont("Plugin1", def_font);
                              Print Button :

                              Code:
                              GridEx.SetDefaultFont("Plugin1", print_font);
                              
                              GridEx.Print("Plugin1", 0, 0, 
                              			GridEx.GetNumberCols("Plugin1")-1,
                              			GridEx.GetNumberRows("Plugin1")-1
                              			);
                              			
                              GridEx.SetDefaultFont("Plugin1", def_font);
                              you might need to adjust row and column sizes as well
                              amsplugins.com Is Closed.

                              Facebook Page

                              Comment

                              Working...
                              X