[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: kretzler  XML
Profile for kretzler -> Messages posted by kretzler [73] Go to Page: Previous  1, 2, 3, 4, 5 Next 
Author Message
ups ... you are right. The setter and not the getter is called. My breakpoint was only on the getter method.

Sorry for wasting your time.
Hello,

in our application we can change the language any time. If I change the language the page is reloaded.

After reloading the page our 'prepare' method from the page is called and all messages on the page are changed. Without the content of a pane.

The pane is the only component on the page which uses componentbinding. After reloading it seems that the get or setPane() Method isnt called. I thought when I load the same page the second time then it is the same if I call the page the first time.

Any ideas?

public HTPANEComponent getPane() {
return m_pane;
}
public void setPane(final HTPANEComponent pane) {
if (m_pane == pane) {
return;
}
m_pane = pane;
initPane();
}


Thanks,
Ralph
Hello,

so far we have just four links in our application and for that I can use my own styleclass and set this styleclass automaticly when someone clicks a link.

I just wanted to know if this is possible.


Thanks,
Ralph
Hello Björn,

ok, this is a point. We can also serialize all information into a string.


Thanks,
Ralph
Hello,

in the changelog from Release 2.1, October 10, 2008 is written that I do not need the context.xml file to avoid the useage of cookies.

Without a context.xml file firefox shows me that a cookie is used and I have problems if I reload my application.

Is this only working for the swing renderer? I am using the html renderer.

Cheers,
Ralph
Hello,

in htstyle.css there is a styleclass 'classlink' and 'classlink_selected'.

I thought that when I click on a link then classlink_selected is choosed for this link and when I click on antoher link then classlink is choosed again.

Is this working automaticly or do I have to set the attribute 'styleClass' within the t:htlink component manually.


Thanks,
Ralph


p.s. in the default htstyle.css in classbody there is a attribute 'backgfixgound-color:#FFFFFF;'. Is this correct?
Hi,

ok I thought that this isnt possible.

But to have only a String as a return value is a bit tricky. Is it possible to have two return values. (resulttext and resulttext[])

function ccGetCard() {
var result = new Object();
result.callback = true;
result.returnvalue = 'xxx';
result.returnvalue2 = new Array('a', 'b', 'c');
return result;
};

We use a Java Applet, so I have also 'java objects' within javascript and break down all java objects to a string is a bit tricky.
Hello,

is it possbile to get a java object as 'resulttext' for a t:thjscall component?

the javascript function:
function ccGetLastError() {
var error = document.SCardApplet.scard.getLastError();
var errorCode = error.code;
var errorMsg = error.text;

var result = new Object();
result.callback = true;
result.returnvalue = xxx;
return result;
};

The return value from the applet is a java bean. It would be nice to pass this java bean to captain casa.

If this isnt possible I would return something like this
result.returnvalue = error.code + ';' + errorMsg;
and then split this string later.

Any other ideas?


Thanks,
Ralph
Nice example ... my htjscalled component is working fine now.

Thanks,
Ralph
with a delay of 500ms it works fine without a delay it is not working. So it is reproducable.

There is a second problem if I have no delay specified. Without a delay if I restart the client the activeX is not working at all because I do not get a repsonse from the ActiveX. This is reproducable too.

So far our application is working fine because I specified a delay for all of our activeX pages.


Thanks,
Ralph
Hello,

I installed the version 2.1 from the September 21, 2008. This version has a new feature:
"The delay that is used within the client for starting ActiveX contorls by using the ACTIVEX component is now set-able via attribute STARTDELAY. The default is 250ms."

On of our component is working only if I set the startdelay to 250ms. If the field is empty this activeX isnt working.

This problem we only have in one of our activeX components.

Is this possible or fortune?


Cheers,
Ralph
Hello,

on my login screen the user can choose the language. For that I use a t:htcombobox. The problem is that there is always an empty row in the t:htcombobox component.


Is this configurable?


Thanks,
Ralph
Hello,

I have field, e.g. t:htpassword and below this field there is a button. If the user clicks within this field 'enter' I would like to call the same actionListener which is connected with the button.


Thanks,
Ralph
Hello,

I have problems to use the t:htjscalled component. There are three attributes.

-actionListener
-jsfunctionname
-value

Anyone has an example?


Thanks,
Ralph
Thanks a lot ... a HTJSCALLED component will sovle my problem.

Cheers,
Ralph
 
Profile for kretzler -> Messages posted by kretzler [73] Go to Page: Previous  1, 2, 3, 4, 5 Next 
Go to:   
Powered by JForum 2.1.6 © JForum Team