Syndicate content

roni 17/01/2012 - 13:33
We are happy to announce an official version of tikal mutlijob plugin for Jenkins has been released...

Recently, I had to create a custom component that does live filtering on data presented in a grid.

 

If you are reading this series, you probably know how this can be done in Flex. If you don't, a quick google search will probably point you in the right direction. Enough to say that in envolves a custom component to get the search criteria and a filter function on the grid's dataProvider ArrayCollection.

 

I was surprised this is relatively straight forward in GWT (using uiBinder and GXT 3.0)

sefi 15/01/2012 - 21:51

Kotlin is a language developed by JetBrains (who develop the Intellij Idea IDE). It aims to be an alternative to Java on the JVM and is developed so it will be easily supported by an IDE (obviously it will be supported by Idea very well)

ittayd 11/01/2012 - 07:41

Greeting ,

Just came on board Tikal (did not send yet a picture to lee)

 

I need a messaging queue implementation on tomcat

And I'm thinking of Jboss HornetQ.

 

Any one done it lately ?

 

Thanks,

Alon

alonm 09/01/2012 - 11:05
hagzag 20/11/2011 - 19:36
ALM

 Hi

 

I'm  trying to create Solr index from oracle db.

the trick is that i'm using multivalue field in solr, and expect from solr to split the value to multi value field.

here is my data-config.xml

<document name="doc">           
            <entity name="EBAYSE_CORE" transformer="RegexTransformer"
                      query="SELECT id,value1 FROM multivalue" >

                <field column="id" name="id" />
                <field column="value1" name="value1" splitBy="\;" />

            </entity>
        </document>

here is the schema.xml:

itaip 05/01/2012 - 16:30

 Dear Developers!

dor 26/01/2012 - 18:29

Dear Developers!

dor 26/01/2012 - 18:29

Get yourself familair with html5's WebRTC technology examples.

By The Way: you can use WebRTC in Chrome by turning on a flag.

orenf 26/01/2012 - 15:48

Enyo is the WebOS javascript framework, so its main target is mobile platforms (but it doesn't allow you to interact with native services, the FAQ recommends wrapping it in phonegap).

 

It has the same "feel" like sancha (extjs) in that html is generated from javascript.

 

One nice thing it has is that it can create a class out of a control configuration:

enyo.kind({
    name: "Hello",
    kind: enyo.Control,
    components: [
        {name: "hello", content: "Hello From Enyo", ontap: "helloTap"},
        {tag: "hr"}
    ],
    helloTap: function() {
        this.$.hello.addStyles("color: red");
    }
};
 
// now create and use the new classes
new Hello().write();
new Hello().write();

 

ittayd 26/01/2012 - 06:23

vladislavm 24/01/2012 - 23:11