I'd have to see an example of how you are coding your query but most of the time you add your query to the config object of the thing you are creating so for example in the cardboard component :
var cardboardConfig = {
types: ["PortfolioItem", "HierarchicalRequirement"],
attribute: dropdownAttribute,
fetch:"Name,FormattedID,Owner,ObjectID,",
query : "YourAttibute = value"
cardRenderer: PriorityCardRenderer
};
Will return a cardboard with only the portfolio items that have an attribute (YourAttribute) whose value equals 'value'. You may also want to use the "toString()" function of the query object to debug and see what string it is actually passing. (Why Rally made that member fucntion "toString" verse "getValue()" like every other member function is beyond me.
Hope that helps,
Dax- Autodesk
Yes, I have been able to query using both custom attributes and standard. I do always build my queries suing the Rally query object. NOTE : There are some oddities that might cause you issues I learned about the hard way. For example The query object always adds "()" to the strings even if empty and if you try and filter with that it returns no results (lame) so you have to code explcityly for the mepty query case like:
fullQueryStr = fullQuery.toString();
// If the query is empty basically All and All empty string silly Rally query otherwise returns nothing
if (fullQueryStr === "()") {
fullQuery = "";
}