You can run IQJam in your company on your Domino server.
Learn how...
Username:
Password:
Login
Reset Password
|
Register
Go
Home
|
Leader Board
|
Tags
|
Help
There are
136 questions
|
332 answers
|
75 unanswered questions
Recent Answers
Recent
|
Answered
|
Unanswered
|
Votes
|
Recent Answers
<<
<
Page 1
>
...
0
votes
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
1
votes
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
1
votes
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
0
votes
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
1
votes
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
1
votes
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
2
votes
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
0
votes
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
0
votes
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
0
votes
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
>
...
IQSpaces
All Questions (136)
Domino Administration (14)
Domino Development (75)
IQJam (21)
IdeaJam (5)
Lotus Connections (2)
Lotus Notes (12)
Lotus Quickr (2)
Lotus Sametime (3)
Lotusphere (2)
Latest Answers
What is the official status of Blackberry support for Ideajam?
Bruce Elgort
-
about 4 days ago
What is the official status of Blackberry support for Ideajam?
Steve Hoffer
-
about 4 days ago
What is the official status of Blackberry support for Ideajam?
Bruce Elgort
-
about 16 days ago
Is it possible to add an Event to a Panel/Div?
David Leedy
-
about 19 days ago
Is it possible to add an Event to a Panel/Div?
Jeremy Hodge
-
about 22 days ago
How can I combine the backgroundcolor of a field with validator on a Xpage
Martin Meijer
-
about 23 days ago
How can I combine the backgroundcolor of a field with validator on a Xpage
Jeremy Hodge
-
about 23 days ago
How can I combine the backgroundcolor of a field with validator on a Xpage
David Leedy
-
about 23 days ago
IQJam's support for formatted questions / answers.
Matt White
-
about 1 month ago
How do I hide rows in a dataTable without incurring excessive
entries?
Mark Rowan
-
about 1 month ago
How do I hide rows in a dataTable without incurring excessive
entries?
Mark Rowan
-
about 1 month ago
Property file content using Java
Jozsef Lehocz
-
about 1 month ago
Property file content using Java
Matt White
-
about 1 month ago
XPages: Offline Solution
Rajeev Menon
-
about 1 month ago
XPages: Offline Solution
David Leedy
-
about 1 month ago
Welcome to IQJam
IQJam is an Innovative Collaborative Question and Answer Community for the Enterprise
Let's face it, we all know that someone somewhere out there has the answer to a question or a problem that you have. The hard part is finding that someone. CEOs will always tell you that an organization's greatest asset is the cumulative knowledge of its employees.
IQJam helps you locate and harness the power of that knowledge with exceptional ease.
Tags
calendar (2)
css (2)
custom controls (5)
dct (2)
designer (3)
document (2)
domino (3)
email (2)
error (3)
folders (3)
ideajam (5)
iphone (3)
iqjam (7)
java (2)
lotus traveler (2)
mobile (3)
notes client (2)
notes (3)
quickr (2)
repeat controls (2)
sametime (4)
security (2)
support (2)
tools (2)
ui (2)
unread marks (2)
view (2)
web services (2)
xpage lifecycle (2)
xpages (38)