# File lib/cgikit.rb, line 1624
                        def parse( component, string )
                                hash     = {}
                                splitted = []

                                items = string.split ','
                                items.each do | item |
                                        splitted = item.split ':'
                                        hash[splitted.first] = component.parse_ckd_value splitted.last
                                end
                                hash
                        end