Hide column in list page but it doesn't save in edit page

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
bani06
User
Posts: 38

Hide column in list page but it doesn't save in edit page

Post by bani06 »

Hi,

In LIST Page on server & client script i create a code to hide column like below.

List Page --> Page_Load
if (!IsEdit)
FLAG_CHECK.Visible = false;

In edit Page it shows perfectly but when click save button it will not saving to database. Did i need to create a code inside edit page to enable save to database? I have try put the code
Edit Page --> Page_Load
FLAG_CHECK.Visible = true;

but it's not working.

Thanks.


MichaelG
User
Posts: 1111

Post by MichaelG »

Enable debug mode (Tools -> Advanced Settings -> Debug) to see what the error is.


bani06
User
Posts: 38

Post by bani06 »

There is no error. Only it doesnt take the column which is i hide in list page. Edit page shows but not save to database.


MichaelG
User
Posts: 1111

Post by MichaelG »

Try Row_Rendered server event instead.


Post Reply