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

I want to create attributes on the fly for some html elements

In my case is to set(or not) a disabled attribute according by user role

So, if user has permision to edit some field, I do not want to put disabled attribute on the element. Otherwise, I want.

I know that I can do this with these approaches:

- Approach 1 - Use Conditionals

if(user.role === 1)
   input(type='text', name='foo')
else
   input(type='text', name='foo', disabled)

- Approach 2 - Plain HTML

- var disabledAttr = (user.role === 1) ? "disabled" : "";
| <input type="text" name="foo" #{ disabledAttr} />

Approach 1 is bad because I need to repeat some code. Aproach 2 I do not need repeat code, but I have to use plain HTML instead of Jade markup.

I tried something like this:

input(type='text', name='foo', #{ disabledAttr} )

But jade generates the following code:

<input type="text" name="foo" disabledattr="" />

Any better ideia?

share|improve this question

1 Answer

up vote 2 down vote accepted

Jade is quite clever when it needs to figure out how to render attributes. You can render your disabled attribute using this single line of jade markup

input(type='text', name='foo', disabled=role!==1)
share|improve this answer
Works like a charm! Thanks! – Rafael Motta Nov 29 '12 at 1:53

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.