Messages by ragul

8 topics, 13 messages
Kuix general board » new version

any new version

Kuix technical support » Search option for the contacts listitem with a search textfield

hi all,

Me too facing the above problem.....

The problem is when i enter into contact screen,the cursor should be in search textfield

and also the cursor should be in textfield when a particular contact is focussing.

I want the cursor should be in textfield until im going to the next screen.

If anyone know about it pls help me to solve this problem..............

 

Regards

Ragul

Kuix technical support » How to get the focus of the list item

Hi all,

I have displayed list items dynamically.

im not able to retrive the focused listitem.

i have used the below code to retrive the focused listitem,but im not getting

 

if ("fromfocus".equals(identifier)) {
             
         
     
                 
                dataprovider = (Dataprovider) arguments[0];
                selectmobilenumber = dataprovider.mobilenumber;
             
                }

 

pls suggest me any other method......

Regards

Ragul

Kuix technical support » HI HANDSUM,how u have posted the screen shot

hi HANDSUM,

i have seen tat u have posted a screen shot .

how u have done tat?

can u explain me pls?

 

 

Regards

ragul

Kuix technical support » How to draw Textarea on the screen?

hi HANDSUM,

i have seen tat u have posted a screen shot .

how u have done tat?

can u explain me pls?

 

 

Regards

ragul

Kuix technical support » problem with selecting the list items from bottom to the top

HI all,

i have displayed a number of list items in a screen.

Problem: when i tend to select the list items from top to bottom it s coming.but after the last list item the focus is not going to the top .

 

if anyone knows ,pls respond........

regards

ragul

 

Kuix technical support » problem with the cursor and the text in the text field

Thanks for repling PRAKASH,

 

but using this i can limit only the number of letters.Even if i give all the 1000 letters ,it is displaying in a single line only and also the cursor comes to the size of the screen.

 

 

Kuix technical support » problem with the cursor and the text in the text field

hi all,

This is the scenario: i have created a static screen to send an sms.In that im having two textfields ,one is to enter number and the other is to enter the message.

Problem:My problem is that, the text is not going to the second line (i.e)No matter how much text i enter it comes in a single line itself.

and also the cursor looks bigger than the normal size.

here is my xml:

<screen style="align:fill;layout:inlinelayout(false,fill)" title="SMS">
    <screenTopBar><picture src="Mobimoovicon.PNG" style="layout-data:sld(left,-1,-1)"/></screenTopBar>
   
    <text style="color:black;font-style:bold">To:</text>
    <textfield id="smstextfield">919986866605</textfield>
    <text style="color:black;font-style:bold">Subject:</text>
     <container class="separator" />
    <textfield id="smssubjectfield" style="min-size:100 100" >Enter the matter for the sms here </textfield>
 
    <screenfirstmenu>
       
        <menupopup>
           
            <menuitem  onAction="sendsms(#smstextfield.text,#smssubjectfield.text)">Send SMS</menuitem>
            <menuitem onAction="clerarmesg">Clear Message</menuitem>
            <menuitem onAction="insertformcnt">Insert From Contact</menuitem>
            <menuitem onAction="back">Back</menuitem>
           
        </menupopup>
    </screenfirstmenu>
    <screenSecondMenu onAction="back"></screenSecondMenu>
  
</screen>

 

pls help me to curb this problem............

Kuix technical support » How to search the list items

thnks for replying TOFU

 

 

but ,i cant get u ...

pls get me clear on this.....

should  i modify my xml?

how can i map focused attribute with the binded property?..

 

Kuix technical support » how to post screen shots in kalmeo.org community

hi all,

i tried to post the image in our community,but it is not coming.

i tried insert image option,in that for

 IMAGE URL: i have specified the path of the image file.

IMAGE DESCRIPTION:specified the description .

 ALLIGNMENT:Top

DIMENSION:dimension of that image

all the remaining fields i left it blank.

help me to solve this problem.

Regards

Ragul

 

Kuix technical support » How to search the list items

hi all,

In a screen i have displayed  contact list items and at the bottom i have displayed a textfield for searching the list items.

here i have used border layout south to display the search field at the bottom.

My need is ,when i enter the name in the text field ,the focus should go to the particular contact.(example:in mobile phones when v enter  'a' the focus goes to the contacts starting with 'a' ).

here is my XML:

<screen style="layout:borderlayout" icon="contact_img.PNG" label= "Contacts">
            <_enabled>@{bButton}</_enabled>
            <scrollPane>
                <list>
                   
                    <listitem>
                        <text>suresh</text>
                    </listitem>
                    <listitem>
                        <text>Venkatesh</text>
                    </listitem>
                    <listitem>
                        <text>Jaykrishna</text>
                    </listitem>
                    <listitem>
                        <text>hari</text>
                    </listitem>
                    <listitem>
                        <text>eswar</text>
                    </listitem>
                    <listitem>
                        <text>chenchu</text>
                    </listitem>
                    <listitem>
                        <text>gouri</text>
                    </listitem>
                    <listitem>
                        <text>sri</text>
                   </listitem>
                </list>
            </scrollPane>
           
            <container  style="layout:borderlayout;layout-data:bld(south)" >          
                <listitem >
                   
                    <picture src="search.PNG" style="align:left" />
                    <container style="layout:inlinelayout(false,fill)">
                        <textfield style="min-size:230 0"></textfield>
                       
                    </container>
                </listitem>
            </container>
           
           
        </screen>

anyone please help me to fix this problem.

Regards

Ragul

 

Kuix technical support » how to fetch ONACTION for the list items which is created dynamically

i got that one tofu!!!!!!

 

 

 

Thanks a lot!!!!!!!!!!!!!

 

Regards

Ragul

Kuix technical support » how to fetch ONACTION for the list items which is created dynamically

hi tofu,

i have created  list items dynamically with  onAction="selection(this.dataprovider)".

My problem is, how to differentiate each list item inside the OnMessage().

This is d XML..

 

<screen>

<container  style="layout:borderlayout;layout-data:bld(center)" >
                <scrollpane >
                    <list >
                        <_renderer >


                            <![CDATA[


            <listItem onfocus="contactfocus" style="layout:gridlayout(3,1)" onAction="selection(this.dataprovider)">
       
                                    <text >@{name}</text>
               
                                       </listItem>]]>


                        </_renderer>


                        <_items >@{countrylist}</_items>


                    </list>
                </scrollpane>
            </container>
</screen>