Using SmartClient 8.3. I've got a picklist on a form that I'm trying to apply hilites to the grid that pops up for the user to choose from. From the documentation, it would appear that this is just a listGrid, so I was under the impression that I could set pickListProperties, and add a property for hilites:
But it doesn't do anything. I can put other things in pickListProperties, such as rowHover, and that works just like it should for a listGrid.
What am I doing wrong here? Shouldn't this work?
Code:
pickListProperties: {
hilites: [{
criteria: {
fieldName: "Obsolete",
operator: "equals",
value: true
},
cssText: "color:#999999;"
}]
}
What am I doing wrong here? Shouldn't this work?
Comment