Get CKEditor (RichTextItem) Object in CSJS

6

Posted by Best Coder | Posted in Development, XPages | Posted on 06-12-2011

Tags: , ,

Unfortunately, I am so tired to find this piece of code.

It’s very surprising but Google has no record with these keywords “Xpages CKEditor getData()”


Share and Enjoy

Source Control (IBM Rational ClearCase) for NSFs & XPages – Lotus Designer in Domino 8.5.3

0

Posted by Best Coder | Posted in Development, XPages | Posted on 25-11-2011

Tags: , , ,

Sorry … English version of this post not ready yet. I hope, you’ll got the point from pictures :) But I wish to write in English on this weekend.

Bir IBM Rational ClearCase ile Lotus Designer Source Control implementasyonunu hikayesi;

ClearCase in Domino Designer ile implementasyonu için öncelikle IBM Rational ClearCase in bilgisayarınızda kurulu olması ve ayarlarının (View) yapılmış olması gerekiyor.

Akabinde Domino Designer a Rational ClearCase SCM Adapter ın klasik Eclipse Plugin yükleme yöntemiyle (File -> Application -> Install) yüklenmesi gerekiyor.

Kurulum sonrasında Domino Designer ın restart işlemleri gerçekleştirilir.

Window -> Show Eclipse Views -> Navigator (General kategorisinde) açmanız gerekir.

Uygulamanızı bulup, üzerinde sağ tıklama ile çıkan menüden Team Development -> Set Up Source Control for this Application seçeneğini seçiyorsunuz.

Read the rest of this entry »

Share and Enjoy

BlackBerry Device’s Screen Resolutions

0

Posted by Best Coder | Posted in BlackBerry, BlackBerry, Development | Posted on 04-09-2011

Tags: ,

For BlackBerry Developers, basic information that you can need :

h : Screen Height (px) – w : Screen Width (px)

  • BlackBerry Torch 9800 – h:480 x w:360
  • BlackBerry Bold 9000 – h:320 x w:480
  • BlackBerry Bold 9700 – h:360 x w:480
  • BlackBerry Bold 9780 – h:360 x w:480
  • BlackBerry Curve 8520 – h:360 x w:480
  • BlackBerry Curve 9300 – h:240 x w:320

Share and Enjoy

Afterthoughts about LUGTR 2011 …

0

Posted by Best Coder | Posted in BlackBerry, Development, Event, Lotus Notes, Personal, TRLUG 2011 | Posted on 20-03-2011

Tags: , , ,

After a long journey, we finally passed the turkish lotus user group conference … I think, it was good. There is no comment on Serdar’s blog entry. There were valuable contributions from TRLUG board and on behalf of them by Serdar BaÅŸeÄŸmez. I congratulate him once again because of this valuable and hard work.

Read the rest of this entry »

Share and Enjoy

Turkish LUG – Announcement for My Event Session …

0

Posted by Best Coder | Posted in BlackBerry, Development, Event, Lotus Notes | Posted on 08-03-2011

The first annual conference of Turkish User Group will be held in Istanbul. Attend my session at this great user group event on March 17th, 2011.

My session is “Application Development with Blackberry & Notes”. You can see agenda from this web site

I will complete for Turkish Lotus Users the tutorial about how can we use IBM® Lotus® Domino® Web Services (using Web Services Provider) in BlackBerry Java® Development using Eclipse.

Hope to see you at the session …

Share and Enjoy

Exception during Retrieving of ToDo.DUE Property Value (IndexOutOfBoundsException)

0

Posted by Best Coder | Posted in BlackBerry, Development | Posted on 31-01-2011

If you get IndexOutOfBoundsException during retrieving of ToDo.DUE property value, check before it has a value.

Wrong :

lngEnd = _SourceContext.getDate(BlackBerryToDo.DUE, 0);

Correct :

if (todo.countValues(BlackBerryToDo.DUE) > 0)
{
lngEnd = todo.getDate(BlackBerryToDo.DUE, 0);
}
This is because if ToDo has no Due date (I mean, selected ‘ None ‘ value), you can take IndexOutOfBoundsException error. Check before it has a value using countValues (…) > 0
I spent lots of time to solve this exception :)

Share and Enjoy

Valid ToDo.PRIORITY Values (The documentation in the 4.5.0 and lower)

0

Posted by Best Coder | Posted in BlackBerry, Development | Posted on 31-01-2011

The documentation in the 4.5.0 and lower JavaDocs is incorrect. This has been updated in version 4.6.0+.

Here is are a chart on how it works.

PRIORITY in the Tasks Application

Normal -> 5

High -> 1

Low -> 9

PRIORITY Specified to setInt()/addInt()

Normal -> 0, 4, 5, 6

High -> 1, 2, 3

Low -> 7, 8, 9

Share and Enjoy

Blackberry Application Development – Part 3 (Eclipse Development)

5

Posted by Best Coder | Posted in BlackBerry, Development, Lotus Notes | Posted on 29-12-2010

Tags: , , ,

Now we are finishing our Blackberry development tutorial. It take so long i know but time is limited for me :)

Sorry for this situation.

First, I want to share links of previous posts.

Part 1

Part 2

Now Part 3 is coming …

Read the rest of this entry »

Share and Enjoy

Domino Mobile Admin

3

Posted by Best Coder | Posted in BlackBerry, Development, Lotus Notes, Mobile Admin | Posted on 30-05-2010

Tags: , ,

Hello my frields,

I am working for a commercial application which will run on Blackberry and will be integrated with Lotus Domino. You can easily manage some operations on your –company’s- domino servers from your blackberry device wherever you are.

Which operations you can do;

  • Run Console Commands
  • Run Scheduled Agents

I published screenshots of this application and want to share your ideas about this application.

 

Please do not hesitate to share your comments. Also if you participate in the Mobile Admin survey would also like to appreciate.

See you again …

Share and Enjoy

Blackberry Signature Tool + Multiple *.cod Files

0

Posted by Best Coder | Posted in BlackBerry, Development | Posted on 06-05-2010

Tags:

“For some reason when I try to sign my project .cod file the signature tool creates a second instance of my project for it to sign.

I tried to create a new project and move my files – but no luck.

it looks something like:

Proj.cod Not Signed Required RRT
Proj.cod Not Signed Required RBB
Proj.cod Not Signed Optional RCR
Proj-1.cod Not Signed Required RRT <—-????
Proj-1.cod Not Signed Required RBB <—-???? Where did these 3 come from?
Proj-1.cod Not Signed Optional RCR <—-????”
by dmravyan from Blackberry Support Community Forum

The reason of this situation -> Link

Reason : If the cod file is larger than around 64k then it splits the main cod into multiple smaller cod files with the -n extension to the filename.

Share and Enjoy