I am quite new to XPages. To start with I have downloaded some sample Bootstrap-xpage applications. The application which I am exploring doesn't depend on extension library.
For below line of code it throws error "Unknown property this.attrs. It is not defined on tag xp:inputText"
<xp:this.facets>
<xp:panel xp:key="facet_1">
<xp:inputText id="inputSenderName" value="#{mycard.sendername}" required="true">
<xp:this.attrs>
<xp:attr name="placeholder" value="Your Name" />
</xp:this.attrs>
<xp:this.validators>
<xp:validateRequired message="Enter your name"></xp:validateRequired>
</xp:this.validators>
</xp:inputText>
</xp:panel>
</xp:this.facets>
Any suggestions?