How is it possible to set/change the filter of the datasheet-object (Access Web Datasheet) ?
I tried it like described in the example of the API-documentation (http://msdn.microsoft.com/en-US/library/bb861782(v=office.14).aspx), but with no success.
function Test()
{
var $grid = $( "#STSListControlWPQ2" );
$grid[0].SetFilter( null, "FilterField1=Title&FilterValue1=SHO%5FTest%5F1" );
return false;
}I did not quite understand the first parameter (value ? type ? )