- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Thank you very much and now understand the 1, 2, 3, and 4 or have an understanding.
I did more checking and tried the following but it is still not removing the added row. I don't know that much about this but it should be working now.
var cMsg = "Continuing with the current action will remove all cell entries for this row";
cMsg += "\n\nDo you want to continue?";
var nRtn = app.alert(cMsg,1,1,"Question Alert Box");
if (nRtn == 1) {
if ( Table1._Item.count > 1 ) {
// OK Response
Table1._Item.removeInstance(Table1._Item.count - 1);
console.println("The Response Was Yes");
} else if ( nRtn == 2 ) {
// Cancel Response
console.println("The Response Was No");
} else {
//Unknown Response
console.println("The Response Was somthing other than Yes/No: " + nRtn);
}
}
Views
Replies
Total Likes