change visbilite text in devexpress asp.net -


i need set visibilité false in textbox , nned let him invisible , propriété of code :

@html.devexpress().textbox(         f =>         {             f.name = "codeclient";             f.text = "";             f.width = 300;             f.enabled = false;              f.height = 30;              f.properties.nulltext = " choisir client";         }).gethtml() 

can me how change visiblité of textbox visible invisible

 @html.devexpress().textbox(         f =>         {             f.name = "codeclient";             f.text = "";             f.width = 300;             f.enabled = false;             f.clientvisible = false;              f.height = 30;              f.properties.nulltext = " choisir client";         }).gethtml() 

add f.clientvisible = false;


Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -