Messages by BigNude

27 topics, 60 messages
Kuix technical support » Multi Device Build of Kuix Application

if you want to build with specific approach you have to

  1. install manufactor SDK (Erikcsson, Motorola, Nokia, ig)
  2. create ant file
  3. and build with diferent SDK's

you san skip step 2 and do it manualy, but it would by pain in the humm somewhere

Kuix technical support » I need the Drop Down Component....

for me this sounds nasty hack to go and display 100+ items on the phone... an u just filter them? for example allow navigate through items by alphabetic order, changing screens,

if you insist on having choises, you can allway split the list and that item NEXT after like 10-15, this is the best soliution in my mind. You wouldhave to worry then about the size of the memory.

Kuix technical support » Round Robbin in ScroolPane

well, there are two types of scrollbar, either it is vertical or horisontal, these mean that eather up/down or left/right keys are actualy used for navigating in scroolbar , so you have the oposite paire to "jump out of" loop, as well that developer can assign 2jump out" shortcut.

Another way would be to introduce new widged of "round robin" type and let UI developer to controll jump outs.

the reason I bring this up is becouse of future proving KUIX, for example when touch screen will be de facto (quite soon) the most human convinion way to navigate through menus and screens will be browsing then like you do with news pappers, scrolling it with your finger.

without round robin it will immediatly get tendios and borring.

 

Kuix technical support » Real Thread Progress

well, I ll try to explain.

assume I have thread whitch will do some thing, dosnät matter what, but I want this thread to by blocking and by that I mean I want to start a pop up with gauge (progress bar) whicht would loop the gaugde while started thread is running. but then the thread is doen with calculations I want to remove thread change screen.

Kuix technical support » Round Robbin in ScroolPane

ok, it would by real nice future to have on individual scroolbars, even if there are several of them on the screen :)

Kuix bug report » ondestroy: Uncaught exception java/lang/IllegalArgumentException: KuixCanvas not initialized.

I'm trying out the lates application and then closing app in and calling Dwayze.getDefault().destroyImpl();

result in following error:

java.lang.ArrayIndexOutOfBoundsException: 1 >= 0
Uncaught exception java/lang/IllegalArgumentException: KuixCanvas not initialized.
        at java.util.Vector.removeElementAt(Vector.java:511)
        at org.kalmeo.util.worker.Worker.run(Worker.java:148)

Kuix technical support » list of checkboxe's

it allways that hard question, how to keep simplicity and gain flexibility power.

But I think you are doing grate jobb! And have developed very good framework.

undfortenotly it's not well documented and it would be nice if you had snipets available, were user could both post and read how-to's

 

anyhow, keep upp good work!

Kuix technical support » list of checkboxe's

since you conver all children into listitem the one elegant way would by to assige type to the list item like checkbox, radiobutton, etc

thus depenting on the type select command would auto-magicly understand to check the box or radiobutton, while keeping hover on whole list item.

 

But to keep flexibility it would by conviniot to have a multiselectible="true" atribute whitch would release the focus to all children in the list item.

 

 

Kuix technical support » list of checkboxe's

the only soliution I found was to "pretend" checkbox and use listiteam

<list>
    <_renderer>
        <![CDATA[
                <listitem onAction="selected(this.id)">
                <_ID>@{id}</_ID>
                    <picture>
                        @{selected}
                    </picture>
                    <textarea>
                        @{value_1} @{value_2}
                    </textarea>
                </listitem>
        ]]>
    </_renderer>
    <_items>@{contact}</_items>
</list>

then call toogleSelect() and change picture

Kuix technical support » list of checkboxe's

My questions how to set fokus directly on the "box"

the folowing xml then generating results that user have to press left key to go to the  box itself and then press select

I would like to check box then user pressed down/select command.

 

<list>
    <_renderer>
        <![CDATA[
                <checkbox onAction="selected(this.id)"><_ID>@{id}</_ID>
                    @{value_1} @{value_2}
        </checkbox>
               
        ]]>
    </_renderer>
    <_items>@{contact}</_items>
 </list>

 

css:

listitem {
  gap: 5 0;
}

listitem:hover {
  bg-color: #edf2f6;
  color: #6d9fcc;
}

checkbox {
    bg-image: url(chk_off.png);
    bg-align: left;
    bg-repeat: 1 1;
    padding: 0 0 0 20;
    align: left;
}

checkbox:selected {
    bg-image: url(chk_on.png);
}

checkbox:hover {
    bg-image: url(o_chk_off.png);
}

checkbox:hover:selected {
    bg-image: url(o_chk_on.png);
}

Kuix technical support » Assign class to scrollbar

hi,

 

If I have scrollpane in xml file, but I would like to add come class to scrollbar , how do I do it?

Assigning some color property to a global scrollbar in css makes all look the same.

 

Thank you in advance!

Kuix technical support » Round Robbin in ScroolPane

hi,

 

question is: is it possible to do round robbin and let the focus (selection) to go from the last item to first instead of neding to go backwords?

 

Kuix technical support » Minimize application

hi!

 

how can kuix application be send to backround instead of destroying?

pauseApp() can be called from static method but then frame is loaded it is in static "mode"

 

Kuix technical support » Real Thread Progress

I have been looking at the progressbar pop up in demo, but I haven't managet to remove popup then thread dies.

Assum that I want a connection thread to show progressbar and then remove it then thread is done running.

Any sugestions how I should proced?

Kuix technical support » Slow progress popup

Hi, I'm traying to create wait popup with a progres bar, so I create it and and start, and simultainiosly I create and start network thread, but the pop up is so slow that I get responce from server before it shows, how it comes?