Quantcast
Channel: ASPRunner forums
Viewing all articles
Browse latest Browse all 2586

[SOLVED] Make inline Records all editable

$
0
0
I have the following code on Javascript on load of page. If I just use the one liner pageObj.inlineEdit.editAllRecs(); it works fine. I added code below based on field value , but dose not work either condition. Anything I missed Here?



var ctrlcompleted = Runner.getControl(pageid, 'completed');

if (this.getValue()== 'No') {

pageObj.inlineEdit.editAllRecs();


} else {


};


Also tried this



var ctrlcompleted = Runner.getControl(pageid, 'completed');

if (ctrlcompleted.getValue()=='No') {

pageObj.inlineEdit.editAllRecs();


} else {


};

Viewing all articles
Browse latest Browse all 2586

Trending Articles