removes a flag set for the specified item
| id |
$$("dtable").addMark(2, "invalid", true, "incorrect format");
...
// removes the flag but keeps the css style ".invalid" applied to the item with 'id=2'
$$("dtable").removeMark(2, "invalid", false);
The method removes only flags set by the addMark method.