You can run IQJam in your company on your Domino server. Learn how...
Username: Password:
Reset Password | Register
 
Home | Leader Board | Tags | Help
Recent Answers 
<<<Page 1>...
0votes

re: What is the official status of Blackberry support for Ideajam?

Steve - great advice.  It's in our plans.


Bruce Elgort - about 4 days ago
1votes
Marked as correct on: 7/27/10 8:59 PM

re: What is the official status of Blackberry support for Ideajam?

I agree that blackberry support would be ideal. It would not take too much effort to test the software against this platform.

Steve Hoffer - about 4 days ago
1votes

re: What is the official status of Blackberry support for Ideajam?

Paul,
 
IdeaJam on the Blackberry browser isn't something that we have tested - hence we don't currently officially support. Is this a requirement for your organization?  If so may I suggest posting this is an idea on http://ideajam.net.  Select IdeaJam for the IdeaSpace. 
 
Regards, 
 
Bruce 


Bruce Elgort - about 16 days ago
0votes

re: Is it possible to add an Event to a Panel/Div?

Jeremy gave the correct answer.  It didn't work at first to me.  It turns out that you must make sure that the panel has an ID.  That's needed for the event to bind to it.
 
Thanks Jeremy!


David Leedy - about 19 days ago
1votes
Marked as correct on: 7/12/10 7:50 PM

re: Is it possible to add an Event to a Panel/Div?

Yes, you can add events to a panel, however there is no support for it through the UI, you have to do it in the source code ... also, if you plan to support a "backwards old fuddy duddy no fun good for nothing pain in the @rse piece of crap" browser (say IE 6), then nevermind.
 
Easiest way to get it done if you aren't comfortable enough coding the event 100% in the src window is to create the event on an object that supports it, then just move the xp:eventHandler block inside the xp:panel


Jeremy Hodge - about 22 days ago
1votes
Marked as correct on: 7/27/10 8:04 AM

re: How can I combine the backgroundcolor of a field with validator on a Xpage

Hello David and Jeremy.
Thanks for your suggestions, it was a realy help.
I didn't know about the .isValid() property of the field.
Now it's easy.
 Jeremy, I changed your code a little bit and finaly this is what I needed.
Thank's again!
 
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
    <xp:label value="Some:" id="label1">
    </xp:label>
    <xp:inputText id="inputText1" required="true"
        disableClientSideValidation="true">
        <xp:this.validators>
            <xp:validateRequired message="Value Required"></xp:validateRequired>
        </xp:this.validators>

        <xp:this.style><![CDATA[#{javascript:if(!getComponent('inputText1').isValid()){
    return "border-color:rgb(255,0,0);border-style:solid;border-width:thin";
} else{
    return "";
}}]]></xp:this.style>
    </xp:inputText>
    <xp:messages id="messages1"></xp:messages>
    <xp:button value="SUBMIT" id="button1">
        <xp:eventHandler event="onclick" submit="true"
            refreshMode="complete" immediate="false" save="true"></xp:eventHandler>
    </xp:button>
</xp:view>


Martin Meijer - about 23 days ago
2votes

re: How can I combine the backgroundcolor of a field with validator on a Xpage

Martin, this can be accomplished by accessing the input's JSF component isValid() method, in the label's style attribute. isValid() returns false if validation has run on the component, and the component failed validation For Example:
 
    <xp:label value="Some:" id="label1" style="#{java_script:(!getComponent('inputText1').isValid()) ? 'background-color:#FF0000 !important;color:#FFF;' : '';}"></xp:label>
    <xp:inputText id="inputText1" value="#{HelloWorld.someVariable}"
        required="true"
        disableClientSideValidation="true">
        <xp:this.validators>
            <xp:validateRequired message="Value Required"></xp:validateRequired>
        </xp:this.validators>
    </xp:inputText>
<xp:messages id="messages1"></xp:messages>


Jeremy Hodge - about 23 days ago
0votes

re: How can I combine the backgroundcolor of a field with validator on a Xpage

I don't have any code off the top of my head...  but you can use dojo to apply a new CSS style.  I've seen it done on Lables somewhere.  I've not tried it on the edit control itself.
 
If you want SSJS can you not compute the CSS class?  Based on the value of the control?

Just thinking out loud.  I don't have anything in front of me but can look into it if you don't get a more concrete answer.


David Leedy - about 23 days ago
0votes

re: IQJam's support for formatted questions / answers.

Hi Paul,
 
We basically limit the formatting options to what's available in the rich text editor toolbar that you see. So we offer:
  • Bolding, Italicising, Underlining, Strikethrough
  • Bullets and numbered lists
  • Indenting (which also works well for code samples, see here
  • Links to other pages
  • Embedded images which are hosted elsewhere (ie you need to know the URL for the image)
If you want to do more serious formatting then you will need to know CSS and be willing to open Domino Designer (we sell the templates open so you can see and edit all fo the source code).
 
Hope this helps. We'd be happy to do a more detailed demo if you would like, just drop a line to sales@elguji.com
 
Matt 


Matt White - about 1 month ago
0votes

re: How do I hide rows in a dataTable without incurring excessive <td><tr></tr></td> entries?

Paul,
 
Taking your "Dynamic Table with Data Source and Repeat Control" example, if you were to add a "Status" selection box, how would you restrict the displayed content to the Status selected, eg New?

Mark


Mark Rowan - about 1 month ago
<<<Page 1>...

Latest Answers