English 中文(简体)
客户的外部清单领域
原标题:Filter external list fields from client

BACKGROUND:

我们正在开发一个通过客户目标模型获取“共享点”的习惯应用,这一应用需要查阅使用OM(目标模型)的“共同点”(外部内容类型)清单。 这一应用是一种产品,应当与大多数共享点装置和配置一起使用,并且不能事先了解外部清单。

在没有为项目设计的过滤器的情况下,Sign Point将清单中的所有可用物品(如果数量低于门槛值)归来。 当我们确定该信标的过滤器时,在应用该过滤器后,只归还了这些物件(可能正确来自SP的行为)。

PROBLEM:

我们需要能够根据用户在搜索箱中输入的文本,查找这份“有效”清单。 目前似乎没有办法改变在将数值归还给电击标时使用的滤光点。

页: 1 我的权责清单中有10个项目(1,2,3..10)。 每个项目有3栏(ID、名称、说明)。 在为项目清单设置了过滤器之后,SongPoint返回项目2、3和6;在我要求Song Point提供项目清单时,6个。

用户不查询项目7的描述。 我如何查找/过滤清单,以归还与我的查询相匹配的项目?

我在试图解决这一问题的圈子中走过了,但似乎没有工作。 我尝试根据以下两项定义确定CAML查询和LoadQuery:。 http://pholpar.wordpress.com/102/09/how-to-query-external-lists-on-the-client-side-using-caml/ 但似乎没有工作。

问题回答

Even I had this problem. Let me tell you there is no way of doing this. Even in Server object model, there was an option to change the filters of the default view but then the SPList will return 0 items once the filter is applied. The funny part is once your code runs & you open the list in SP UI, you can see the actual modified list. But the same cannot be queries in the object model.

奇怪。 我猜测,如果你在这种情况下修改特殊产品标准,那么你只能在下一阶段取得结果(如下页复读)。





相关问题
Finding a class within list

I have a class (Node) which has a property of SubNodes which is a List of the Node class I have a list of Nodes (of which each Node may or may not have a list of SubNodes within itself) I need to be ...

How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

Is List<> better than DataSet for UI Layer in ASP.Net?

I want to get data from my data access layer into my business layer, then prepare it for use in my UI. So i wonder: is it better to read my data by DataReader and use it to fill a List<BLClasses&...

What is the benefit to using List<T> over IEnumerable<T>?

or the other way around? I use generic lists all the time. But I hear occasionally about IEnumerables, too, and I honestly have no clue (today) what they are for and why I should use them. So, at ...

灵活性:在滚动之前显示错误的清单

我有一份清单,在你滚动之前没有显示任何物品,然后这些物品就显示。 是否有任何人知道如何解决这一问题? 我尝试了叫人名单。

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签