Latest messages

80 topics, 215 messages
Kuix general board » kuix support for table view

Hi,

 

Nagendra Kumar,

 

I tried for getting the table using Kuix. I got related to table, but i didnt get lines in between rows and columnns. I used the New source

code for this, because weight style attribute should be working in new source code. I implemented xml based code only.

I written the example model here.

 

sno  name   mode

1     suresh  offline

2     naresh  online

3     Sridhar  offline.

 

Like this i displayed for my small application.

 

Regards,

Suresh A

 

Kuix general board » kuix support for table view

Hi,

Does KUIX as plans to support table's in future. Looking for xml based table UI Which when rendered would allow the users to view the scrollable table with x rows and y columns.

 

Regards,

Raja Nagendra Kumar,

C.T.O

www.tejasoft.com

Kuix general board » new version

any new version

Kuix general board » Positive feedback instead of demanding help and/or features

Kudos2Kuix!

Kuix general board » Focusable and Enable evolutions

Hmn, I see the change has been introduced already. I can't really see why a disabled widget should receive focus? It means I now have to add extra XML:

<button onaction="doAdd">
   %ADD%
   <_enabled>@{active}</_enabled>
   <_focusable>@{active}</_focusable>
</button>

This is not a huge problem, but why the change?

On an unrelated note, it would be great if it were possible to negate values in XML e.g. @{!active}, otherwise I'm forced to define an additional property in my data provider.

Kuix general board » Tooltip and i18n

Yes, it's possible:

<textfield>
    <_tooltip>%MESSAGE%</_tooltip>
</textfield>

Kuix general board » Tooltip and i18n

Hi everyone ,

I can't find the way to i18lize tooltip for textfields. Is there is possibility to do this?

Kuix general board » multiple lines in a textfield

Hi everyone ,

 

Can anyone respond to my query....

 

Regards,

venky.

 

 

 

 

 

 

Kuix general board » multiple lines in a textfield

Hi everyone,

 

I want to know how far the framework supports the multiple line entry in a textfield.

 

Is there any possibility to do that ,If so how?

 

And if not i want the suggestions to implement this.Its very urgent for me to implement this as it is a part of my project task.

 

Hoping for  a +ve reply......

 

I have already posted my query in this forum under the technical support category , now i want to make it as a general discussion to

sort out the issue.

 

regards,

venky.

 

 

 

Kuix general board » What do you think about Kuix ?

The first impression: Kuix is very clean framework. Especially after Polish one. XML/CSS is convenient. Although it's the first look, I hope it'll work fine for me.

Kuix general board » Focusable and Enable evolutions

Actualy all Focusable derived widgets has focusable and enable attribute. But enable has an highest priority on focusable. To be short, a disabled widget is not focusable.

In first reflexion this behavior is the best way to manage those two attributes.

But wouldn't it be better if a disabled widget could be focusable ?

Kuix general board » Key events

Yes you can add what ever you want in popupBox.

Since 1.1.0 popupBox could be defined through xml (here popup.xml)

<popupbox style="layout-data:sld(center,1,-1)">

    <textfield id="tf"/>
    <popupBoxFirstMenuItem onAction="myAction(#tf.text)"/>

</popupbox>

And open it with

Kuix.showPopupBox("popup.xml", null);

 

Tranlucent appearance could be done with tranlucent PNG background image of the PopupBox.

Kuix general board » Key events

i can add textfield to popUpBox? if yes can also make it a bit tranparent???

Kuix general board » Key events

What you want ot do is a popupBox, no ?

Kuix general board » Key events

I want to display two screens at the same time. I want to display a large long screen on the background that contains a very long list of items. when I click  search, I want the screen to remain while I display a smaller screen that contains just a textfield in the middle of the screen. up till now, whenever I display a new screen the old screen disappears....

Is it possible to achieve what I want to?

 

Thanks