This topic is locked
[SOLVED]

 During the display in the List Page

6/25/2019 2:03:52 AM
ASPRunner.NET General questions
F
FAISAL A ALMAGHRABI author

my dear
I would like to help me with the following:

  1. During the display in the List Page I want to hide and show grid_inline_edit based on the value of a particular field
    'Regards

I
i.NoLim 6/25/2019

Try something like this,



if (data["InsertFieldName"].ToString() == Â "Condition") {

    pageObject.hideItem("grid_edit", recordId);

}
F
FAISAL A ALMAGHRABI author 6/28/2019



Try something like this,



if (data["InsertFieldName"].ToString() == Â "Condition") {

    pageObject.hideItem("grid_edit", recordId);

}



Thanks a lot .. Done