Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to apply a background-color style conditionally in the itemTpl of a list. Let's say my itemTpl looks something like:

itemTpl: '<tpl if="condition"> <div class="highlight"> ... </div> </tpl> '

The problem is that when I do that the style "highlight" doesn't apply to the whole list item.

If I inspect the DOM, I see that the content of my itemTpl is inside another div with class "x-list-item" containing another div with class "x-list-item-label". Therefore, applying a background style to my itemTpl does not fill the full area...

Does anyone know how to affect the whole area (thus the "x-list-item" or "x-list-item-label") ?

Is there a css/sass trick to affect the parent of my div ? Is there a sencha trick ?

thanks

share|improve this question

1 Answer

up vote 3 down vote accepted

Sorry for my misunderstood. Then the following will work. I'm sure.

Suppore that you set an id for your element (not component, I know), for eg:

<span id="something-here">{whatever you want to show}</span>.

Then:

  • Ext.get('something-here') returns your element
  • Ext.get('something-here').up('div.x-list-item') returns the nearest parent of that node which has tag div with class x-list-item

I've already tested this via show() and hide() and the element is interacted well.

To add CSS class to an element, simply use addCls('special-css-class')

share|improve this answer
Hi! Thanks for your input. How can I access the x-list-item-label in using Ext.ComponentQuery? And if I can assess it that way, why should I do it inside the XTemplate member function? Is there a way to get a ref to the x-list-item inside this member function ? – borck Apr 8 '12 at 19:55
try something like this Ext.ComponentQuery.query('x-list-item-label[class="highlight"]'); – Thiem Nguyen Apr 9 '12 at 4:59
this doesn't work as ComponentQuery is not designed to select classes. 'x-list-item' is not an xtype but the class of the div surrounding the itemTpl... – borck Apr 9 '12 at 7:07
sorry, let's try Ext.getCmp('your-xlist-item-label-id').up() instead (of course you need to create an id for your label. note: up() mean goes up one level in DOM tree – Thiem Nguyen Apr 9 '12 at 10:42
Sorry again, but I cannot use Ext.getCmp since I am not able to put an id on the items. This is the whole problem:I don't know how to acces the items of an xlist. The only id I have is on the xlist itself. – borck Apr 9 '12 at 12:34
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.