Ejemplo n.º 1
0
def expect_render_select(select_name, choice_list, select_val, placeholder):
    sel  = """<select name="%s">"""%select_name
    if select_val not in choice_list:
        val = "opt_type/"+select_val if select_val else ""
        lab = "opt_type/"+select_val if select_val else placeholder
        fc = FieldChoice(id=val, label=lab)
        nopt = ['''<option value="%s" selected="selected">%s</option>'''%(val, fc.choice_html())]
    else:
        nopt = []
    opts = [ expect_render_option(choice_val, select_val, placeholder) for choice_val in choice_list ]
    end  = "</select>\n"
    return "\n".join([sel]+nopt+opts+[end])
Ejemplo n.º 2
0
def expect_render_option(choice_val, select_val, placeholder):
    selected    = ''' selected="selected"''' if choice_val == select_val else ''''''
    if choice_val == "":
        option_val  = ""
        choice_text = placeholder
        value_text  = ''' value=""'''
    else:
        option_val  = "opt_type/"+choice_val
        choice_text = "label "+choice_val
        value_text  = ''' value="%s"'''%option_val
    fc = FieldChoice(id=option_val, label=choice_text, choice_value=(choice_val=="dup"))
    return '''<option%s%s>%s</option>'''%(value_text, selected, fc.choice_html())
Ejemplo n.º 3
0
def expect_render_option(choice_val, select_val, placeholder):
    selected = ''' selected="selected"''' if choice_val == select_val else ''''''
    if choice_val == "":
        option_val = ""
        choice_text = placeholder
        value_text = ''' value=""'''
    else:
        option_val = "opt_type/" + choice_val
        choice_text = "label " + choice_val
        value_text = ''' value="%s"''' % option_val
    fc = FieldChoice(id=option_val,
                     label=choice_text,
                     choice_value=(choice_val == "dup"))
    return '''<option%s%s>%s</option>''' % (value_text, selected,
                                            fc.choice_html())
Ejemplo n.º 4
0
def expect_render_select(select_name, choice_list, select_val, placeholder):
    sel = """<select name="%s">""" % select_name
    if select_val not in choice_list:
        val = "opt_type/" + select_val if select_val else ""
        lab = "opt_type/" + select_val if select_val else placeholder
        fc = FieldChoice(id=val, label=lab)
        nopt = [
            '''<option value="%s" selected="selected">%s</option>''' %
            (val, fc.choice_html())
        ]
    else:
        nopt = []
    opts = [
        expect_render_option(choice_val, select_val, placeholder)
        for choice_val in choice_list
    ]
    end = "</select>\n"
    return "\n".join([sel] + nopt + opts + [end])