<div dir="ltr">Hello All,<div><br></div><div>I'm stuck here, any help would be appreciated.</div><div>I have to create a attribute column with the respective color used in renderer of this attribute, i am using the <a class="" href="http://qgis.org/api/classQgsVectorLayer.html" target="_self" style="color:rgb(70,101,162);font-weight:bold;outline:none;font-family:Roboto,sans-serif;font-size:14px;white-space:nowrap;background-color:rgb(247,248,251)">QgsVectorLayer</a>.loadSldStyle that creates a <a class="" href="http://qgis.org/api/classQgsRuleBasedRendererV2.html" target="_self" style="color:rgb(70,101,162);font-weight:bold;outline:none;font-family:Roboto,sans-serif;font-size:14px;white-space:nowrap">QgsRuleBasedRendererV2</a> but the symbolsForFeature is returning empty.</div><div>With the symbol i could get the color and finish my job, but the symbolsList is always empty.</div><div><br></div><div>My Try:<br><br></div><div><div>layer = QgsVectorLayer("estados.shp", "estados", "ogr")</div><div>if not layer:</div><div>  print "Layer failed to load!"</div><div><br></div><div>layer.loadSldStyle("estados_Nome.sld")</div><div>layer.triggerRepaint()</div><div>for curFeature in layer.dataProvider().getFeatures():</div><div>  layer.rendererV2().symbolsForFeature(curFeature)</div></div><div><br></div></div>