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

Capture and play voice with Asterisk ARI -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -

visual studio - Installing Packages through Nuget - "Central Directory corrupt" -